Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | |
3 * Copyright (C) 2006-2014 Eyeo GmbH | |
4 * | |
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 | |
7 * published by the Free Software Foundation. | |
8 * | |
9 * Adblock Plus is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
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/>. | |
16 */ | |
17 | |
18 body | |
19 { | |
20 margin: 0px; | |
21 font-family: Segoe UI, Arial, sans-serif; | |
22 font-size: 13px; | |
23 color: #545454; | |
24 background-color: #f8f6f2; | |
25 background-image: url(background.png); | |
26 } | |
27 | |
28 #clickhide-instructions, | |
29 #clickhide-cancel, | |
30 body.clickhide-active li | |
31 { | |
32 display: none; | |
33 } | |
34 | |
35 body.clickhide-active #clickhide-instructions, | |
36 body.clickhide-active #clickhide-cancel | |
37 { | |
38 display: block; | |
39 } | |
40 | |
41 body.local #clickhide | |
42 { | |
43 display: none; | |
44 } | |
45 | |
46 header | |
47 { | |
48 height: 45px; | |
49 margin-bottom: 40px; | |
50 border-bottom: 1px solid #e1ddd8; | |
51 background-image: url(background-main.png); | |
52 } | |
53 | |
54 #logo | |
55 { | |
56 position: relative; | |
57 top: 20px; | |
58 width: 55px; | |
59 height: 55px; | |
60 margin: 0px auto; | |
61 background-image: url(abp-icon-big.png); | |
62 background-size: 100%; | |
63 } | |
64 | |
65 #wrapper | |
66 { | |
67 padding: 0px 20px; | |
68 } | |
69 | |
70 footer | |
71 { | |
72 min-width: 150px; | |
73 cursor: pointer; | |
74 padding: 10px 35px; | |
75 border-top: 1px solid #e1ddd8; | |
76 background-image: url(background-main.png); | |
77 } | |
78 | |
79 footer:hover | |
80 { | |
81 background: -moz-linear-gradient(top, rgba(70, 50, 0, 0.1), rgba(70, 50, 0, 0. 1)), | |
Thomas Greiner
2014/09/29 16:19:49
Seems like we don't need to support this syntax an
saroyanm
2014/10/02 07:53:56
Done.
Thomas Greiner
2014/10/08 10:40:43
"and Chrome 26"
saroyanm
2014/10/10 12:05:58
Done.
| |
82 url(background-main.png); | |
83 background: -webkit-linear-gradient(top, rgba(70, 50, 0, 0.1), rgba(70, 50, 0, 0.1)), | |
84 url(background-main.png); | |
85 background: linear-gradient(to bottom, rgba(70, 50, 0, 0.1), rgba(70, 50, 0, 0 .1)), | |
86 url(background-main.png); | |
87 } | |
88 | |
89 footer .icon | |
90 { | |
91 background-position: -50px -65px; | |
92 } | |
93 | |
94 ul | |
95 { | |
96 margin: 0px; | |
97 padding: 0px; | |
98 } | |
99 | |
100 li | |
101 { | |
102 cursor: pointer; | |
103 list-style-type: none; | |
104 white-space: nowrap; | |
105 border-top: 1px dashed #a5a4a1; | |
106 } | |
107 | |
108 li span | |
109 { | |
110 padding-right: 70px; | |
111 padding-left: 3px; | |
112 } | |
113 | |
114 li .collapse span | |
115 { | |
116 padding-right: 120px; | |
117 } | |
118 | |
119 li ul | |
120 { | |
121 margin-left: 35px; | |
122 } | |
123 | |
124 li li | |
125 { | |
126 cursor: default; | |
127 padding: 10px 15px; | |
128 } | |
129 | |
130 .menu-item | |
131 { | |
132 padding: 10px 0px 10px 15px; | |
133 } | |
134 | |
135 .menu-item:hover | |
136 { | |
137 background-color: #ece7df; | |
138 } | |
139 | |
140 .checkbox-item, .checkbox-item label | |
141 { | |
142 cursor: pointer; | |
143 } | |
144 | |
145 .icon | |
146 { | |
147 display: inline-block; | |
148 width: 15px; | |
149 height: 15px; | |
150 margin: 1px 15px 0 0; | |
151 vertical-align: top; | |
152 background-image: url(popup.png); | |
153 } | |
154 | |
155 #clickhide .icon, | |
156 #clickhide-cancel .icon | |
157 { | |
158 background-position: -50px -33px; | |
159 } | |
160 | |
161 #clickhide-instructions | |
162 { | |
163 margin: 10px 15px; | |
164 } | |
165 | |
166 #blockable .icon | |
167 { | |
168 background-position: -66px -17px; | |
169 } | |
170 | |
171 #report-issue .icon | |
172 { | |
173 background-position: -50px -81px; | |
174 } | |
175 | |
176 label | |
177 { | |
178 vertical-align: middle; | |
179 } | |
OLD | NEW |