OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 | 141 |
142 #abp-bottombar-title { | 142 #abp-bottombar-title { |
143 padding-left: 4px; | 143 padding-left: 4px; |
144 } | 144 } |
145 | 145 |
146 #abp-bottombar-toolbar { | 146 #abp-bottombar-toolbar { |
147 display: -moz-box !important; | 147 display: -moz-box !important; |
148 visibility: visible !important; | 148 visibility: visible !important; |
149 } | 149 } |
150 | 150 |
151 #abp-bottombar-close { | 151 #abp-bottombar-close, |
| 152 #abp-notification-close |
| 153 { |
152 padding: 4px 2px; | 154 padding: 4px 2px; |
153 border-style: none !important; | 155 border-style: none !important; |
154 -moz-user-focus: normal; | 156 -moz-user-focus: normal; |
155 list-style-image: url("close.png"); | 157 list-style-image: url("close.png"); |
156 -moz-appearance: none; | 158 -moz-appearance: none; |
157 -moz-image-region: rect(0px, 14px, 14px, 0px); | 159 -moz-image-region: rect(0px, 14px, 14px, 0px); |
158 } | 160 } |
159 | 161 |
160 #abp-bottombar-close:hover { | 162 #abp-bottombar-close:hover, |
| 163 #abp-notification-close:hover |
| 164 { |
161 -moz-image-region: rect(0px, 28px, 14px, 14px); | 165 -moz-image-region: rect(0px, 28px, 14px, 14px); |
162 } | 166 } |
163 | 167 |
164 #abp-bottombar-close:hover:active { | 168 #abp-bottombar-close:hover:active, |
| 169 #abp-notification-close:hover:active |
| 170 { |
165 -moz-image-region: rect(0px, 42px, 14px, 28px); | 171 -moz-image-region: rect(0px, 42px, 14px, 28px); |
166 } | 172 } |
167 | 173 |
168 .abp-contributebutton | 174 .abp-contributebutton |
169 { | 175 { |
170 margin-top: 20px; | 176 margin-top: 20px; |
171 } | 177 } |
172 | 178 |
173 .abp-contributebutton-btn | 179 .abp-contributebutton-btn |
174 { | 180 { |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 #abp-notification html|a | 223 #abp-notification html|a |
218 { | 224 { |
219 cursor: pointer; | 225 cursor: pointer; |
220 color: #0000f0; | 226 color: #0000f0; |
221 } | 227 } |
222 | 228 |
223 #abp-notification html|a:hover | 229 #abp-notification html|a:hover |
224 { | 230 { |
225 text-decoration: underline; | 231 text-decoration: underline; |
226 } | 232 } |
| 233 |
| 234 #abp-notification.abp-closing #abp-notification-content, |
| 235 #abp-notification:not(.abp-closing) #abp-notification-close-content |
| 236 { |
| 237 display: none; |
| 238 } |
| 239 |
| 240 #abp-notification-close-content toolbarbutton label |
| 241 { |
| 242 text-align: left; |
| 243 } |
OLD | NEW |