blob: 1a89a689254a0e481b228269ab390e6634803638 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/*
* Custom rules for show_bug.css.
* The rules you put here override rules in that stylesheet.
*/
.last_comment_link {
float: right;
font-size: 80%;
font-weight: normal;
margin-left: 1em;
}
#legal_disclaimer {
width: 40em;
padding: 1em;
margin: 0 1em 1em 1em;
font-weight: bold;
border: 1px red solid;
background-color: lightyellow;
}
.bz_patch {
background: #ffffcc;
}
.cc_list_display {
list-style: none;
margin:0px;
padding:5px;
padding-right:20px;
overflow:auto;
float:left;
max-width:465px;
max-height:100px;
border:1px solid #CCC;
}
.cc_list_display li {
margin:0px;
padding:0px;
white-space:nowrap;
}
#wave_wand {
margin-top: 0px;
}
/* put the width on the TD rather than the PRE to stop the col resizing
when comments are hidden */
.bz_comment {
width: 55em;
}
.bz_comment_text {
width: auto;
}
.bz_comment_number {
float: right;
}
/* style all field labels the same */
.field_label, .field_label a {
color: #000;
font-weight: bold;
}
.field_label a {
cursor: help;
}
.edit_form table th:first-child {
width: 0px;
}
#bz_show_bug_column_1, #bz_show_bug_column_2 {
width: 50%;
}
/* fix flag table's vertical alignment */
table#flags {
border-collapse: collapse;
border-spacing: 0px;
}
|