? Is that a private change which you did not intend to leak out into the wild? I'm going to revert that on the supposition that it is an error since you don't include a chit_sup.css file. Please explain if I am wrong.
This is something I was going to discuss with you when I had a moment, but I guess it made its way into the submitted code for the Pyramid quest tracker update, and my moments are few and far sometimes.
This is a transparent change to all users, with no impact to current or future users, but it allows for a user to have a custom css file 'chit_sup.css' that will allow modifying / overriding the ChIT css.
If there is no chit_sup.css file, it does nothing. But for those who want a slightly tweaked layout, they can modify their own local css file without having it later overwritten by a SVN update.
I declare the _sup sheet after the standard sheet to give it priority. From
6.4.1 Cascading order:
Finally, sort by order specified: if two declarations have the same weight, origin and specificity, the latter specified wins. Declarations in imported style sheets are considered to be before any declarations in the style sheet itself.
Mostly I was trying this out as I prefer some different colors and smaller fonts, and this is an easy way for me to get those things without changing it for everyone.
EDIT: as an example, my chit_sup.css includes this:
Code:
#chit_tracker tr td {
font-size:10px;
}
because I prefer smaller text for more info on my tracker. But it is mismatched with the rest of ChIT that uses 12px font, so I can have this as a local, personal only setting.
ckb