Topic: Errors in Oxygen_cs.css
The status indicator pattern matching is erratic.
Line 381 to 383
.brd .main-content .sticky .closed .icon {
border-color: #D7E5F3 #C3CFDC #898989 #7A7A7A;
}
This piece of css does effectively nothing because it doesn't match "<span class="icon sticky closed"><!-- --></span>".
A workaround (post IE6/Firefox/Opera/Safari) would be the following:
.brd .main-content [class="icon sticky closed"] {
background: border-color: #D7E5F3 #C3CFDC #898989 #7A7A7A; !important;
}
Next one, a problem when changing the color of the offline userstatus indicator occurs because the selector .brd .post * (lines 90-92) is used for that. However, this one also changes some other border colors.
To circumvent that a new selector should be added to allow offline indicators to have a separate color:
.brd .userstatus span {
border-color: #DDE4EB;
}