Select to view content in your preferred language

Folder font is smaller

260
1
03-25-2024 05:33 AM
Status: Open
jakek
by
Regular Contributor

At the last release of AGOL, the folder font size decreased too much and should not have decreased at all.  You must've hired a younger 'coder' with very good eyes. The table font size for the Title column, etc is perfect (see attachment).  Can you please set the folder font to the same size as the Title column font?  Adjusting web browser zoom level does not help much.  Allowing personal customizing would be an even better option. Thank you.

1 Comment
jcarlson

Until they make the fix, there's always the stylus browser extension.

The folders are set to a font-size of var(--calcite-font-size--2), whereas the content listings are just 0.875rem.

To overwrite a variable, you could use CSS like this:

@-moz-document domain("arcgis.com") { 
    :root {
        --calcite-font-size--2: 0.875rem
    }
}

Here it is in action:

jcarlson_0-1711375611346.png