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: -webkit-linear-gradient(top, rgba(70, 50, 0, 0.1), rgba(70, 50, 0,
0.1)), | |
82 url(background-main.png); | |
83 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)), |
84 url(background-main.png); | 82 url(background-main.png); |
85 } | 83 } |
86 | 84 |
87 footer .icon | 85 footer .icon |
88 { | 86 { |
89 background-position: -50px -65px; | 87 background-position: -50px -65px; |
90 } | 88 } |
91 | 89 |
92 ul | 90 ul |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 #clickhide-instructions | 157 #clickhide-instructions |
160 { | 158 { |
161 margin: 10px 15px; | 159 margin: 10px 15px; |
162 } | 160 } |
163 | 161 |
164 #blockable .icon | 162 #blockable .icon |
165 { | 163 { |
166 background-position: -66px -17px; | 164 background-position: -66px -17px; |
167 } | 165 } |
168 | 166 |
| 167 #blockable:not(.open) [data-action="close"], |
| 168 #blockable.open [data-action="open"] |
| 169 { |
| 170 display: none; |
| 171 } |
| 172 |
169 #report-issue .icon | 173 #report-issue .icon |
170 { | 174 { |
171 background-position: -50px -81px; | 175 background-position: -50px -81px; |
172 } | 176 } |
173 | 177 |
174 label | 178 label |
175 { | 179 { |
176 vertical-align: middle; | 180 vertical-align: middle; |
177 } | 181 } |
LEFT | RIGHT |