I know we're not supposed to report bugs here, so I am not reporting a bug, just asking a question...
I have never come across a case where there's a need to define the same css class twice, but that seems to be done in phpBB3:
Code: Select all
.bg1 { background-color: #ECF3F7; }
.bg2 { background-color: #e1ebf2; }
.bg3 { background-color: #cadceb; }
Code: Select all
.bg1 { background-color: #f7f7f7;}
.bg2 { background-color: #f2f2f2; }
.bg3 { background-color: #ebebeb; }
Should I submit this as a bug - the correct one (first code quote) is later in the files, so appears to work normally - but it could reduce the css file size by a few bytes without the second one!
Cheers,
Ed