blob: 282757a3b078c53e467f2191cd89b23fabc3e00b (
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
30
31
|
/* colorize bugs in various groups */
/* these are also defined in skins/contrib/Mozilla/global.css */
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[class*=core-security] {
background-color: #ffe0b0;
}
|