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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 ul | 88 ul |
89 { | 89 { |
90 margin: 0rem; | 90 margin: 0rem; |
91 } | 91 } |
92 | 92 |
93 [aria-hidden="true"] | 93 [aria-hidden="true"] |
94 { | 94 { |
95 display: none !important; | 95 display: none !important; |
96 } | 96 } |
97 | 97 |
98 [aria-disabled="true"] | |
99 { | |
100 background-color: #BBB !important; | |
101 background-image: none !important; | |
102 } | |
103 | |
104 input[type="text"], | 98 input[type="text"], |
105 input[type="url"], | 99 input[type="url"], |
106 textarea, | 100 textarea, |
107 main | 101 main |
108 { | 102 { |
109 -webkit-box-sizing: border-box; | 103 -webkit-box-sizing: border-box; |
110 -moz-box-sizing: border-box; | 104 -moz-box-sizing: border-box; |
111 box-sizing: border-box; | 105 box-sizing: border-box; |
112 } | 106 } |
113 | 107 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 { | 167 { |
174 background-image: url(icons/checkbox.png); | 168 background-image: url(icons/checkbox.png); |
175 display: inline-block; | 169 display: inline-block; |
176 } | 170 } |
177 | 171 |
178 button[role="checkbox"][aria-checked="true"]:not(.toggle) | 172 button[role="checkbox"][aria-checked="true"]:not(.toggle) |
179 { | 173 { |
180 background-position: 0px 18px; | 174 background-position: 0px 18px; |
181 } | 175 } |
182 | 176 |
183 button[role="checkbox"][disabled] | 177 button[role="checkbox"][disabled], |
| 178 button[role="checkbox"][aria-disabled="true"] |
184 { | 179 { |
185 border-radius: 2px; | 180 border-radius: 2px; |
186 background-color: #ccc; | 181 background-color: #ccc; |
187 } | 182 } |
188 | 183 |
189 button[role="checkbox"].toggle | 184 button[role="checkbox"].toggle |
190 { | 185 { |
191 background: url(icons/toggle.svg#on); | 186 background: url(icons/toggle.svg#on); |
192 } | 187 } |
193 | 188 |
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 font-weight: 700; | 654 font-weight: 700; |
660 font-size: 1.375rem; | 655 font-size: 1.375rem; |
661 } | 656 } |
662 | 657 |
663 #dnt | 658 #dnt |
664 { | 659 { |
665 padding: 0.8rem; | 660 padding: 0.8rem; |
666 border: 1px solid #099CD0; | 661 border: 1px solid #099CD0; |
667 } | 662 } |
668 | 663 |
669 .new | |
670 { | |
671 display: inline-block; | |
672 margin: 0rem 0.5rem; | |
673 padding: 0.3rem 0.6rem; | |
674 border-radius: 0.2rem; | |
675 background-color: #099CD0; | |
676 color: #FFF; | |
677 line-height: 100%; | |
678 font-size: 1rem; | |
679 text-transform: uppercase; | |
680 } | |
681 | |
682 /* | 664 /* |
683 Tables | 665 Tables |
684 */ | 666 */ |
685 | 667 |
686 ul.table, | 668 ul.table, |
687 ul.list | 669 ul.list |
688 { | 670 { |
689 list-style: none; | 671 list-style: none; |
690 margin: 0rem; | 672 margin: 0rem; |
691 padding: 0rem; | 673 padding: 0rem; |
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1464 | 1446 |
1465 #hide-notification::after | 1447 #hide-notification::after |
1466 { | 1448 { |
1467 background-color: #099DD1; | 1449 background-color: #099DD1; |
1468 } | 1450 } |
1469 | 1451 |
1470 #hide-notification:hover::after | 1452 #hide-notification:hover::after |
1471 { | 1453 { |
1472 background-color: #5CBCE1; | 1454 background-color: #5CBCE1; |
1473 } | 1455 } |
LEFT | RIGHT |