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 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1151 #all-filter-lists-table | 1151 #all-filter-lists-table |
1152 { | 1152 { |
1153 margin-bottom: 0.8rem; | 1153 margin-bottom: 0.8rem; |
1154 } | 1154 } |
1155 | 1155 |
1156 #custom-filters-edit | 1156 #custom-filters-edit |
1157 { | 1157 { |
1158 white-space: nowrap; | 1158 white-space: nowrap; |
1159 } | 1159 } |
1160 | 1160 |
1161 #custom-filters-edit-area | 1161 #custom-filters-control |
1162 { | 1162 { |
1163 display: flex; | 1163 display: flex; |
1164 width: 100%; | 1164 width: 100%; |
1165 } | 1165 } |
1166 | 1166 |
1167 /* | 1167 /* |
1168 avoid doubled margin glitchy behavior | 1168 avoid doubled margin glitchy behavior |
1169 as shown in visual specifications | 1169 as shown in visual specifications |
1170 */ | 1170 */ |
1171 #custom-filters-edit-area .side-controls .side-controls | 1171 #custom-filters-control .side-controls .side-controls |
1172 { | 1172 { |
1173 margin: 0; | 1173 margin: 0; |
1174 } | 1174 } |
1175 | 1175 |
1176 /* | 1176 /* |
1177 visibility: hidden; | 1177 visibility: hidden; |
1178 preserves the flex-box meaning, | 1178 preserves the flex-box meaning, |
1179 keeping buttons on the right. | 1179 keeping buttons on the right. |
1180 */ | 1180 */ |
1181 #custom-filters-edit-error | 1181 #custom-filters-edit-error |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1575 font-size: 1rem; | 1575 font-size: 1rem; |
1576 color: #077CA6; | 1576 color: #077CA6; |
1577 background-color: #E1F2FA; | 1577 background-color: #E1F2FA; |
1578 } | 1578 } |
1579 | 1579 |
1580 #notification strong | 1580 #notification strong |
1581 { | 1581 { |
1582 flex: 1; | 1582 flex: 1; |
1583 text-align: center; | 1583 text-align: center; |
1584 } | 1584 } |
LEFT | RIGHT |