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-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 | 214 |
215 treechildren::-moz-tree-image(col-slow, slow-true) | 215 treechildren::-moz-tree-image(col-slow, slow-true) |
216 { | 216 { |
217 list-style-image: url(slow.png); | 217 list-style-image: url(slow.png); |
218 } | 218 } |
219 | 219 |
220 .findbar-highlight | 220 .findbar-highlight |
221 { | 221 { |
222 display: none; | 222 display: none; |
223 } | 223 } |
| 224 |
| 225 /* Findbar */ |
| 226 |
| 227 #findbar-closebutton |
| 228 { |
| 229 list-style-image: url(close.png); |
| 230 -moz-image-region: rect(0px, 14px, 14px, 0px); |
| 231 } |
| 232 |
| 233 #findbar-closebutton:hover |
| 234 { |
| 235 -moz-image-region: rect(0px, 28px, 14px, 14px); |
| 236 } |
| 237 |
| 238 #findbar-closebutton:active |
| 239 { |
| 240 -moz-image-region: rect(0px, 42px, 14px, 28px); |
| 241 } |
| 242 |
| 243 #findbar-textbox[status="notFound"] |
| 244 { |
| 245 /* We cannot change background color because of -moz-appearance but a red */ |
| 246 /* shadow works. */ |
| 247 filter: drop-shadow(0 0 4px red); |
| 248 } |
| 249 |
| 250 #findbar[data-os="darwin"] > #findbar-case-sensitive[checked="true"] |
| 251 { |
| 252 /* Firefox on Mac doesn't indicate checked buttons, do it ourselves */ |
| 253 filter: brightness(70%); |
| 254 } |
| 255 |
| 256 .findbar-status |
| 257 { |
| 258 font-size: 80%; |
| 259 } |
| 260 |
| 261 .findbar-status[hidden="true"] |
| 262 { |
| 263 /* Make sure these elements always occupy the necessary space */ |
| 264 display: -moz-box; |
| 265 visibility: hidden; |
| 266 } |
OLD | NEW |