blob: 333aff48f754cd31cbae0ca2b75b8e2561a5eff6 (
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This Source Code Form is "Incompatible With Secondary Licenses", as
* defined by the Mozilla Public License, v. 2.0. */
.tracking_flags .field_label a {
font-weight: normal !important;
color: #000;
}
#guided {
margin-top: 30px;
}
#component {
width: 25em;
}
.hidden_text {
opacity: 0;
filter: alpha(opacity=0);
}
#bug_create_warning {
border: 1px solid #dddddd;
background: #fff9db;
color: #666458;
padding: 5px;
}
#bug_create_warning_image {
float: left;
padding: 5px;
}
#bug_create_warning_text {
margin-left: 42px;
}
#keyword_container,
#bug_mentors_autocomplete,
#container_see_also {
width: 25em
}
#custom_form_list {
font-weight: bold;
border: 1px solid #dddddd;
background: #fff9db;
color: #666458;
padding: 5px 5px 10px 5px;
min-height: 48px;
border-radius: 5px;
}
#custom_form_list_image {
float: left;
}
#custom_form_list_text {
margin-left: 55px;
}
#custom_form_list ul {
margin-top: 0.5em;
margin-bottom: 0;
padding-left: 20px;
}
|