Please note these CSS snippets provided are not officially supported and you may have to adjust them if there are DOM changes with future releases
-EDIT-
Updated the css slightly to apply the font size change to the whole agenda content, as well as including the font-size change for news-feed tile.
CSS for adjusting icon size (which I find the default size a bit too imposing). If you consider 50% being the default size for the CSS below then I use 35% as a bit smaller icon which I find much more aesthetic. Adjust percentages to your taste…
I usually just target the font size of the icon. It looks like the icons are usually 4em by default, so I just adjust from there.
Half size: (2 / 4)
.tile .icon svg { font-size: 2em; }
25% bigger (5 / 4):
.tile .icon svg { font-size: 5em; }
I was trying to figure out why you had all the other stuff with positioning in your example since the icons are already centered, but I guess once you make the icons so big that they go out of their bounding box, the extra centering can help force them back to center.
Does anyone know syntax for header or title font upsizing? since the scalable updates I cannot read or update the tile title sizes. I did fix the calendar content size with the CSS per guidance above.
You can adjust it in the theme. It’s listed as “Header Font Size” toward the bottom of the customizations. You can choose the ‘Custom’ size and then input whatever percentage you want like 200%
Thank you for that; seems to work with a little trial and error. I had tried the largest non custom size and didn’t see any movement. I am assuming the theme solution is the only way to modify dashboard tile font size (for icon hero types) if scalable method is used? thanks again.
.tile .title { font-size: <specify size in points or em units>; }
-and- .tile .title-footer { font-size: <specify size in points or em units>; }
should to the trick
Note: if you don’t see any changes, you may need to add !important clause before the semicolon to force these styles to override other definitions
Example: .tile .title { font-size: 2.5em !important; }
.tile {background-color: RGBA(130, 0, 0, 0.5)!important;} Blue with a 50% transparency
Color value/transparency is specified as: RGBA(red, green, blue, alpha). The alpha parameter is a number between 0.0 (fully transparent) and 1.0 (fully opaque).
Most tiles will also add an ‘active’ class to the tile if you want to target things more generically.
Eg.
.tile.active {
background: red;
}
Please note that any custom CSS snippets provided are not officially supported and may need to be adjusted with potential future changes to the SharpTools web app.