blob: d3097aeddf41095c78bd744e2690cb638c9afbac (
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
37
38
39
40
41
|
/* 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;
}
#request_form #filtering th {
padding-left: 0.5em;
}
|