LEFT | RIGHT |
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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 { | 167 { |
168 background-image: url(icons/checkbox.png); | 168 background-image: url(icons/checkbox.png); |
169 display: inline-block; | 169 display: inline-block; |
170 } | 170 } |
171 | 171 |
172 button[role="checkbox"][aria-checked="true"]:not(.toggle) | 172 button[role="checkbox"][aria-checked="true"]:not(.toggle) |
173 { | 173 { |
174 background-position: 0px 18px; | 174 background-position: 0px 18px; |
175 } | 175 } |
176 | 176 |
177 button[role="checkbox"][disabled] | 177 button[role="checkbox"][disabled], |
| 178 button[role="checkbox"][aria-disabled="true"] |
178 { | 179 { |
179 border-radius: 2px; | 180 border-radius: 2px; |
180 background-color: #ccc; | 181 background-color: #ccc; |
181 } | 182 } |
182 | 183 |
183 button[role="checkbox"].toggle | 184 button[role="checkbox"].toggle |
184 { | 185 { |
185 background: url(icons/toggle.svg#on); | 186 background: url(icons/toggle.svg#on); |
186 } | 187 } |
187 | 188 |
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 font-weight: 700; | 654 font-weight: 700; |
654 font-size: 1.375rem; | 655 font-size: 1.375rem; |
655 } | 656 } |
656 | 657 |
657 #dnt | 658 #dnt |
658 { | 659 { |
659 padding: 0.8rem; | 660 padding: 0.8rem; |
660 border: 1px solid #099CD0; | 661 border: 1px solid #099CD0; |
661 } | 662 } |
662 | 663 |
663 .new | |
664 { | |
665 display: inline-block; | |
666 margin: 0rem 0.5rem; | |
667 padding: 0.3rem 0.6rem; | |
668 border-radius: 0.2rem; | |
669 background-color: #099CD0; | |
670 color: #FFF; | |
671 line-height: 100%; | |
672 font-size: 1rem; | |
673 text-transform: uppercase; | |
674 } | |
675 | |
676 /* | 664 /* |
677 Tables | 665 Tables |
678 */ | 666 */ |
679 | 667 |
680 ul.table, | 668 ul.table, |
681 ul.list | 669 ul.list |
682 { | 670 { |
683 list-style: none; | 671 list-style: none; |
684 margin: 0rem; | 672 margin: 0rem; |
685 padding: 0rem; | 673 padding: 0rem; |
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1458 | 1446 |
1459 #hide-notification::after | 1447 #hide-notification::after |
1460 { | 1448 { |
1461 background-color: #099DD1; | 1449 background-color: #099DD1; |
1462 } | 1450 } |
1463 | 1451 |
1464 #hide-notification:hover::after | 1452 #hide-notification:hover::after |
1465 { | 1453 { |
1466 background-color: #5CBCE1; | 1454 background-color: #5CBCE1; |
1467 } | 1455 } |
LEFT | RIGHT |