Wiki page for customcss tweaks?
I was thinking about customisation via options, and it struck me that for some things, just cutting and pasting some CSS into the customcss box might be the way forward for many of the more obscure customisation options.
For example, the option I just added to use a different font for the brand name. It needs a lot of code support to do the talking to Google Fonts, but maybe you want that to be a specific color, maybe you want it to have a drop shadow or what have you. All that could be added as specific options with a UI, but maybe just sharing the CSS for targetting it with a couple of examples would work even better and let people use their creativity to build on it, e.g. one ugly example:
.navbar-default .navbar-brand,
.navbar-inverse .navbar-brand {
color: #fff;
text-shadow: 2px 2px #009;
}
Another example is changing the color of the Glyphicon fonts used for the Settings menu Something like .tree_item .glyphicon {color: #999;} can retain the traditonal Moodle look.