LEFT | RIGHT |
(no file at all) | |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | 18 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
19 | 19 |
20 .wizard-header | 20 .wizard-header |
21 { | 21 { |
22 display: none; | 22 display: none; |
23 } | 23 } |
24 | 24 |
25 #wizardHeader | 25 #wizardHeader |
26 { | 26 { |
27 display: -moz-box; | 27 display: -moz-box; |
28 -moz-box-ordinal-group: 0; | 28 -moz-box-ordinal-group: 0; |
| 29 -moz-binding: none !important; |
29 padding: 10px 5px !important; | 30 padding: 10px 5px !important; |
30 } | 31 } |
31 | 32 |
32 .progressLabel | 33 .progressLabel |
33 { | 34 { |
34 margin: 5px 0px; | 35 margin: 5px 0px; |
35 text-align: center; | 36 text-align: center; |
36 font-size: 110%; | 37 font-size: 110%; |
37 font-weight: normal; | 38 font-weight: normal; |
38 } | 39 } |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 | 120 |
120 #sendReportErrorLinks, #typeWarningTextLink | 121 #sendReportErrorLinks, #typeWarningTextLink |
121 { | 122 { |
122 margin: 0px; | 123 margin: 0px; |
123 } | 124 } |
124 | 125 |
125 #sendReportErrorBox | 126 #sendReportErrorBox |
126 { | 127 { |
127 margin-bottom: 10px; | 128 margin-bottom: 10px; |
128 } | 129 } |
LEFT | RIGHT |