blob: 50875382d7b2d51747fe3bf3ee3c8ec19e911ef3 (
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
42
43
44
45
46
47
48
49
50
51
52
|
hr {margin: 20px auto 40px}
.bz_private { color:darkred }
h1 {
font-size: 2em;
margin-bottom: 10px;
}
/* bugfields is table of all fields and values */
.bugfields {
font-size: small;
background: #eee;
padding: 5px;
border: 1px solid silver;
width: 100%;
}
.bugfields tr {
vertical-align: top;
}
.bugfields th {
width: 10em;
text-align: left;
font-weight: normal;
line-height: 150%;
}
.bugfields td {
font-weight: bold;
line-height: 150%;
}
.bugfields .rightcell {
padding-left: 10px;
}
/* set line-height to normal for nested tables of bugfields table */
.bugfields table th, .bugfields table td {
line-height: 100%;
width: auto;
}
.bugfields table.timetracking th, .bugfields table.timetracking td {
width: 10em;
}
.error {
color: red;
font-weight: bold;
}
|