Index: trunk/tools/bugzilla-3.4.4/skins/custom/buglist.css |
— | — | @@ -25,15 +25,25 @@ |
26 | 26 | tr.bz_bugitem:hover { |
27 | 27 | background-color: #f0f0f0; |
28 | 28 | } |
| 29 | +/* Must go first because of issue with BugZilla wrongly assuming case sensitivity in CSS classes */ |
| 30 | +.bz_normal { |
| 31 | + color:#BB7700; |
| 32 | +} |
| 33 | +/* Otherwise, in order of severity */ |
29 | 34 | .bz_enhancement { |
30 | 35 | color:#106581; |
31 | 36 | } |
| 37 | +.bz_trivial { |
| 38 | + color:#009966; |
| 39 | +} |
32 | 40 | .bz_minor { |
33 | | - color:#d35200; |
| 41 | + color:#669900; |
34 | 42 | } |
35 | 43 | .bz_major { |
36 | | - color:#d30000; |
| 44 | + color:#D30000; |
37 | 45 | } |
38 | | -.bz_trivial { |
39 | | - color:#00AA33; |
| 46 | +.bz_critical { |
| 47 | + color:#CC0000; |
| 48 | + font-weight:bold; |
40 | 49 | } |
| 50 | + |