About the priorities thing, I'll reword it with the next update, I wasn't trying to imply you don't care about themes, just that you and the other admins are working on more important core stuff

suchbalance wrote:Well done Food, really great job. I'm a bit ashamed to admit that I actually got used to the white theme (even after disliking it initially) and prefer it to yours in terms of readability and lines basically, but you really did a great service to all the users who prefer the darker tones.
That's totally cool man, no need to feel ashamed

Marco wrote:My only real criticism so far is that some parts are lacking some sort of separation
Very true, I removed every border (since 95% of them were useless) with a global selector, I still need to re-add some of them in. Firefox is especially finicky about it. The missing border for nested content on firefox is an excellent example I have the following css rules in the code
Code: Select all
blockquote,
code,
div.codebox,
div.detail-spoiler div.hidden,
div.spoilwrapper {
border: 1px solid $border_color !important;
}
div.content > blockquote,
div.codebox > code,
div.content > div.codebox,
div.content > div.detail-spoiler div.hidden,
div.content > div.spoilwrapper {
border: 0px !important;
}
Those work as expected on Cr (every blockquote, code etc has a border, except those elements that are direct children of a div.content -- or div.codebox for the code tag -- this way nested content has a border, while not nested content doesn't) and looks like this.
The same exact code on firefox produces this.
I already fixed several similar things on firefox, I really don't know why it behaves this way.