blob: 3f999c11f6426b59dbb65e9f9814acfba3fb554e (
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
26
27
28
29
|
/* 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_infrasec {
background-color: #ffcc99;
}
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;
}
|