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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 width: 100%; | 512 width: 100%; |
513 } | 513 } |
514 | 514 |
515 #sidebar footer p | 515 #sidebar footer p |
516 { | 516 { |
517 display: flex; | 517 display: flex; |
518 justify-content: center; | 518 justify-content: center; |
519 margin: 1.2rem 0rem; | 519 margin: 1.2rem 0rem; |
520 } | 520 } |
521 | 521 |
| 522 /* This is a stopgap solution of footer overlapping tabs on low resolutions */ |
522 @media (min-height: 37rem) | 523 @media (min-height: 37rem) |
523 { | 524 { |
524 #sidebar .fixed | 525 #sidebar .fixed |
525 { | 526 { |
526 position: fixed; | 527 position: fixed; |
527 } | 528 } |
528 | 529 |
529 #sidebar footer | 530 #sidebar footer |
530 { | 531 { |
531 bottom: 0px; | 532 bottom: 0px; |
(...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1448 | 1449 |
1449 #hide-notification::after | 1450 #hide-notification::after |
1450 { | 1451 { |
1451 background-color: #099DD1; | 1452 background-color: #099DD1; |
1452 } | 1453 } |
1453 | 1454 |
1454 #hide-notification:hover::after | 1455 #hide-notification:hover::after |
1455 { | 1456 { |
1456 background-color: #5CBCE1; | 1457 background-color: #5CBCE1; |
1457 } | 1458 } |
LEFT | RIGHT |