blob: 94108806fb4bbdc42d95404a9d6b2c6b3ccbc6c3 (
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
* This file is part of Adblock Plus <https://adblockplus.org/>,
* Copyright (C) 2006-2015 Eyeo GmbH
*
* Adblock Plus is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* Adblock Plus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
.wizard-header
{
display: none;
}
#wizardHeader
{
display: -moz-box;
-moz-box-ordinal-group: 0;
-moz-binding: none !important;
padding: 10px 5px !important;
}
.progressLabel
{
margin: 5px 0px;
text-align: center;
font-size: 110%;
font-weight: normal;
}
.progressLabel.active
{
font-weight: bold;
}
progressmeter
{
margin-top: 100px;
}
.radioDescription
{
-moz-margin-start: 32px;
}
radio, checkbox, .topLabel, #dataDeck
{
margin-top: 15px;
}
#recentReports
{
margin-top: 15px;
}
#recentReportsList
{
overflow-x: hidden;
overflow-y: auto;
}
#outdatedSubscriptionsList
{
margin: 10px 20px;
}
#issuesBox
{
overflow: auto;
}
#issuesChangeMessage
{
color: red;
}
#screenshotButtons
{
margin-top: 10px;
}
#screenshotBox
{
overflow-y: scroll;
}
#commentLengthWarning, #anonymityWarning
{
color: red;
}
#commentLengthWarning[visible="false"], #anonymityWarning[visible="false"]
{
visibility: hidden;
}
/*
* Force left-to-right everywhere where we are displaying addresses
*/
#data:-moz-locale-dir(rtl)
{
direction: ltr;
}
#sendReportError
{
color: red;
font-size: 150%;
}
#sendReportErrorLinks, #typeWarningTextLink
{
margin: 0px;
}
#sendReportErrorBox
{
margin-bottom: 10px;
}
|