blob: 397bd95a4fc0f226c30571346b7724fec2995a56 (
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
32
33
34
35
36
|
/* For the JS-sorting buglist. */
th.sorttable_sorted,
th.sorttable_sorted_reverse,
th.sorted_0 {
background-color: #aaa;
}
th.sorted_1 {
background-color: #bbb;
}
th.sorted_2 {
background-color: #ccc;
}
th.sorted_3 {
background-color: #ddd;
}
th.sorted_4 {
background-color: #eee;
}
th.sorted_5 {
background-color: #fff;
}
.bz_short_desc_column a, .bz_short_short_desc_column a {
text-decoration: none;
color: inherit;
}
.bz_short_desc_column a:hover, .bz_short_short_desc_column a:hover {
text-decoration: underline;
}
|