Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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-2014 Eyeo GmbH | 3 * Copyright (C) 2006-2014 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 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
71 { | 71 { |
72 min-width: 150px; | 72 min-width: 150px; |
73 cursor: pointer; | 73 cursor: pointer; |
74 padding: 10px 35px; | 74 padding: 10px 35px; |
75 border-top: 1px solid #e1ddd8; | 75 border-top: 1px solid #e1ddd8; |
76 background-image: url(background-main.png); | 76 background-image: url(background-main.png); |
77 } | 77 } |
78 | 78 |
79 footer:hover | 79 footer:hover |
80 { | 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)), | 81 background: linear-gradient(to bottom, rgba(70, 50, 0, 0.1), rgba(70, 50, 0, 0 .1)), |
86 url(background-main.png); | 82 url(background-main.png); |
87 } | 83 } |
88 | 84 |
89 footer .icon | 85 footer .icon |
90 { | 86 { |
91 background-position: -50px -65px; | 87 background-position: -50px -65px; |
92 } | 88 } |
93 | 89 |
94 ul | 90 ul |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
161 #clickhide-instructions | 157 #clickhide-instructions |
162 { | 158 { |
163 margin: 10px 15px; | 159 margin: 10px 15px; |
164 } | 160 } |
165 | 161 |
166 #blockable .icon | 162 #blockable .icon |
167 { | 163 { |
168 background-position: -66px -17px; | 164 background-position: -66px -17px; |
169 } | 165 } |
170 | 166 |
167 #blockable:not(.open) [data-action="close"], | |
168 #blockable.open [data-action="open"] | |
169 { | |
170 display: none; | |
171 } | |
172 | |
171 #report-issue .icon | 173 #report-issue .icon |
172 { | 174 { |
173 background-position: -50px -81px; | 175 background-position: -50px -81px; |
174 } | 176 } |
175 | 177 |
176 label | 178 label |
177 { | 179 { |
178 vertical-align: middle; | 180 vertical-align: middle; |
179 } | 181 } |
LEFT | RIGHT |