blob: 96f3b4f3d1c1fd152d41f72c033484e7080b45c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* colorize bugs in various groups */
body[class*=bz_group_] {
background-color: #e0e0ff;
border-left: solid red 2px;
padding-left: 13px;
}
body[class*=bz_group_] #bugzilla-body {
background-color: inherit;
}
body.bz_group_webtools-security,
body.bz_group_websites-security,
body.bz_group_bugzilla-security {
background-color: #ffeeee;
}
body.bz_group_client-services-security,
body.bz_group_mozilla-services-security {
background-color: #ffff80;
}
body.bz_group_core-security {
background-color: #ffe0b0;
}
|