User:Hashar/Bugzilla CSS

This is a stylesheet for bugzilla. I have enabled it in Firefox by creating a chrome/userContent.css under my firefox profile. The full path is /home/hashar/.mozilla/firefox/FOO.default/chrome/userContent.css , FOO will be different for you, most of the time a 8 character string.

.bz_NEW .first-child { background-color: #FFBFBF !important ; }
.bz_ASSIGNED .first-child { background-color: #C8C8FF !important ; }
.bz_CONFIRMED .first-child { background-color: #FFFFB0 !important; }
.bz_REOPENED .first-child { background-color : #FF5959 !important; }

.bz_blocker {
    color: #000000 !important;
    background-color: #FF0000 !important;
}
.bz_critical {
    color: #000000 !important;
    background-color: #FF8C00 !important;
}
.bz_major {
    background-color: #FFD000 !important;
}
.bz_normal {
    background-color: #FFFFBF !important;
}
.bz_minor {
    background-color: #D4FF7F !important;
}
.bz_trivial {
    background-color: #D2FFBF !important;
    font-weight: italic !important;
}
.bz_enhancement {
    color: #000000 !important;
    background-color: #E8E8E8 !important;
}

table.bz_buglist td, table.bz_buglist th {
 padding : 1px !important;
 margin : 1px !important;
 border: 1px solid white !important;
}

/*
        feedback     : #FF50A8
        acknowledged : #FFD850
        confirmed    : #FFFFB0
        resolved     : #CCEEDD
        closed       : #E8E8E8
*/