| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 267 height: 1.2rem; | 267 height: 1.2rem; |
| 268 padding: 0px; | 268 padding: 0px; |
| 269 } | 269 } |
| 270 | 270 |
| 271 button[role="checkbox"][disabled].icon:not(.toggle)::before, | 271 button[role="checkbox"][disabled].icon:not(.toggle)::before, |
| 272 button[role="checkbox"][aria-disabled="true"].icon:not(.toggle)::before | 272 button[role="checkbox"][aria-disabled="true"].icon:not(.toggle)::before |
| 273 { | 273 { |
| 274 border: 0rem; | 274 border: 0rem; |
| 275 margin: 0.2rem; | 275 margin: 0.2rem; |
| 276 border-radius: 2px; | 276 border-radius: 2px; |
| 277 background-color: #b3b3b3; | 277 background-color: #ccc; |
|
Thomas Greiner
2018/03/08 19:28:19
Detail: Isn't this redundant since we're setting `
saroyanm
2018/03/09 11:23:28
It is not because we do not have dedicated disable
Thomas Greiner
2018/03/09 17:24:22
Acknowledged.
| |
| 278 } | 278 } |
| 279 | 279 |
| 280 button[role="checkbox"].icon:not(.toggle)::before | 280 button[role="checkbox"].icon:not(.toggle)::before |
| 281 { | 281 { |
| 282 /* Using ?query as a workaround to chromium bug #643716 */ | 282 /* Using ?query as a workaround to chromium bug #643716 */ |
| 283 background-image: url(icons/checkbox.svg?off#off); | 283 background-image: url(icons/checkbox.svg?off#off); |
| 284 } | 284 } |
| 285 | 285 |
| 286 button[role="checkbox"][aria-checked="true"].icon:not(.toggle)::before | 286 button[role="checkbox"][aria-checked="true"].icon:not(.toggle)::before |
| 287 { | 287 { |
| (...skipping 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1576 font-size: 1rem; | 1576 font-size: 1rem; |
| 1577 color: #077CA6; | 1577 color: #077CA6; |
| 1578 background-color: #E1F2FA; | 1578 background-color: #E1F2FA; |
| 1579 } | 1579 } |
| 1580 | 1580 |
| 1581 #notification strong | 1581 #notification strong |
| 1582 { | 1582 { |
| 1583 flex: 1; | 1583 flex: 1; |
| 1584 text-align: center; | 1584 text-align: center; |
| 1585 } | 1585 } |
| LEFT | RIGHT |