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-present eyeo GmbH | 3 * Copyright (C) 2006-present 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 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1304 body:not([data-dialog="about"]) #dialog-content-about, | 1304 body:not([data-dialog="about"]) #dialog-content-about, |
1305 body:not([data-dialog="custom"]) #dialog-title-custom, | 1305 body:not([data-dialog="custom"]) #dialog-title-custom, |
1306 body:not([data-dialog="custom"]) #dialog-content-custom, | 1306 body:not([data-dialog="custom"]) #dialog-content-custom, |
1307 body:not([data-dialog="language-add"]) #dialog-title-language-add, | 1307 body:not([data-dialog="language-add"]) #dialog-title-language-add, |
1308 body:not([data-dialog="language-change"]) #dialog-title-language-change, | 1308 body:not([data-dialog="language-change"]) #dialog-title-language-change, |
1309 body:not([data-dialog="language-add"]):not([data-dialog="language-change"]) #dia
log-content-language-add, | 1309 body:not([data-dialog="language-add"]):not([data-dialog="language-change"]) #dia
log-content-language-add, |
1310 body:not([data-dialog="language-add"]) #dialog-body button.add, | 1310 body:not([data-dialog="language-add"]) #dialog-body button.add, |
1311 body:not([data-dialog="language-change"]) #dialog-body button.change, | 1311 body:not([data-dialog="language-change"]) #dialog-body button.change, |
1312 body:not([data-dialog="predefined"]) #dialog-title-predefined, | 1312 body:not([data-dialog="predefined"]) #dialog-title-predefined, |
1313 body:not([data-dialog="predefined"]) #dialog-content-predefined, | 1313 body:not([data-dialog="predefined"]) #dialog-content-predefined, |
| 1314 body:not([data-dialog="tracking"]) #dialog-title-tracking, |
| 1315 body:not([data-dialog="tracking"]) #dialog-content-tracking, |
1314 body:not([data-dialog]) #dialog | 1316 body:not([data-dialog]) #dialog |
1315 { | 1317 { |
1316 display: none; | 1318 display: none; |
1317 } | 1319 } |
1318 | 1320 |
1319 /* | 1321 /* |
1320 Notification | 1322 Notification |
1321 */ | 1323 */ |
1322 | 1324 |
1323 #notification | 1325 #notification |
(...skipping 24 matching lines...) Expand all Loading... |
1348 | 1350 |
1349 #hide-notification::after | 1351 #hide-notification::after |
1350 { | 1352 { |
1351 background-color: #099DD1; | 1353 background-color: #099DD1; |
1352 } | 1354 } |
1353 | 1355 |
1354 #hide-notification:hover::after | 1356 #hide-notification:hover::after |
1355 { | 1357 { |
1356 background-color: #5CBCE1; | 1358 background-color: #5CBCE1; |
1357 } | 1359 } |
OLD | NEW |