| Left: | ||
| Right: |
| 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"] | |
|
ire
2017/10/18 17:48:45
There's already a set of styles applied to disable
saroyanm
2017/10/19 20:41:59
Great idea, done.
| |
| 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 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1451 | 1446 |
| 1452 #hide-notification::after | 1447 #hide-notification::after |
| 1453 { | 1448 { |
| 1454 background-color: #099DD1; | 1449 background-color: #099DD1; |
| 1455 } | 1450 } |
| 1456 | 1451 |
| 1457 #hide-notification:hover::after | 1452 #hide-notification:hover::after |
| 1458 { | 1453 { |
| 1459 background-color: #5CBCE1; | 1454 background-color: #5CBCE1; |
| 1460 } | 1455 } |
| LEFT | RIGHT |