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 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1024 padding: 1.1rem 1rem; | 1024 padding: 1.1rem 1rem; |
1025 } | 1025 } |
1026 | 1026 |
1027 #dialog .table.list li button:hover, | 1027 #dialog .table.list li button:hover, |
1028 #dialog .table.list li button:focus | 1028 #dialog .table.list li button:focus |
1029 { | 1029 { |
1030 background-color: #E1F2FA; | 1030 background-color: #E1F2FA; |
1031 } | 1031 } |
1032 | 1032 |
1033 #dialog .table.list li button[aria-checked="true"], | 1033 #dialog .table.list li button[aria-checked="true"], |
1034 .table.list li .dim | 1034 .table.list li .dimmed |
ire
2018/01/05 09:23:46
NIT: I don't think the classname "dim" is very cle
saroyanm
2018/01/05 12:02:17
I used it as current meaning -> "make or become le
ire
2018/01/08 10:38:35
Oh haha I assumed it was an acronym for something,
saroyanm
2018/01/08 12:53:57
I used Dim, as an adjective -> https://dictionary.
ire
2018/01/08 15:16:18
Yes I get that now. Thank you!
| |
1035 { | 1035 { |
1036 color: #BBB; | 1036 color: #BBB; |
ire
2018/01/05 09:23:45
This is not relative for this issue, but the contr
saroyanm
2018/01/05 12:02:17
Right, we have an issue already filed for that ->
ire
2018/01/08 10:38:35
Thank you
| |
1037 } | 1037 } |
1038 | 1038 |
1039 #dialog .table.list li button > span | 1039 #dialog .table.list li button > span |
1040 { | 1040 { |
1041 flex: none; | 1041 flex: none; |
1042 margin: 0rem 0.8rem; | 1042 margin: 0rem 0.8rem; |
1043 text-transform: none; | 1043 text-transform: none; |
1044 font-weight: 400; | 1044 font-weight: 400; |
1045 } | 1045 } |
1046 | 1046 |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1511 font-size: 1rem; | 1511 font-size: 1rem; |
1512 color: #077CA6; | 1512 color: #077CA6; |
1513 background-color: #E1F2FA; | 1513 background-color: #E1F2FA; |
1514 } | 1514 } |
1515 | 1515 |
1516 #notification strong | 1516 #notification strong |
1517 { | 1517 { |
1518 flex: 1; | 1518 flex: 1; |
1519 text-align: center; | 1519 text-align: center; |
1520 } | 1520 } |
LEFT | RIGHT |