OLD | NEW |
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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 #sidebar .fixed | 653 #sidebar .fixed |
654 { | 654 { |
655 position: fixed; | 655 position: fixed; |
656 } | 656 } |
657 | 657 |
658 #sidebar footer | 658 #sidebar footer |
659 { | 659 { |
660 bottom: 0px; | 660 bottom: 0px; |
661 position: absolute; | 661 position: absolute; |
662 } | 662 } |
663 | |
664 } | 663 } |
665 | 664 |
666 /* | 665 /* |
667 Main content | 666 Main content |
668 */ | 667 */ |
669 | 668 |
670 body[data-tab|="general"] #content-general, | 669 body[data-tab|="general"] #content-general, |
671 body[data-tab|="advanced"] #content-advanced, | 670 body[data-tab|="advanced"] #content-advanced, |
672 body[data-tab|="whitelist"] #content-whitelist, | 671 body[data-tab|="whitelist"] #content-whitelist, |
673 body[data-tab|="help"] #content-help | 672 body[data-tab|="help"] #content-help |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1051 | 1050 |
1052 .tooltip | 1051 .tooltip |
1053 { | 1052 { |
1054 position: relative; | 1053 position: relative; |
1055 margin: 0rem; | 1054 margin: 0rem; |
1056 -moz-margin-end: 1rem; | 1055 -moz-margin-end: 1rem; |
1057 -webkit-margin-end: 1rem; | 1056 -webkit-margin-end: 1rem; |
1058 line-height: 1.5rem; | 1057 line-height: 1.5rem; |
1059 text-decoration: none; | 1058 text-decoration: none; |
1060 cursor: help; | 1059 cursor: help; |
| 1060 /* reset minimal button style */ |
| 1061 color: inherit; |
| 1062 font: inherit; |
| 1063 text-transform: initial; |
| 1064 text-align: initial; |
| 1065 font-weight: initial; |
| 1066 font-size: initial; |
1061 } | 1067 } |
1062 | 1068 |
1063 /* | 1069 /* |
1064 Used for translatable screen reader only content. | 1070 Used for translatable screen reader only content. |
1065 e.g.: Use instead of aria-label to avoid complex attribute value translation | 1071 e.g.: Use instead of aria-label to avoid complex attribute value translation |
1066 */ | 1072 */ |
1067 .sr-only | 1073 .sr-only |
1068 { | 1074 { |
1069 position: absolute; | 1075 position: absolute; |
1070 overflow: hidden; | 1076 overflow: hidden; |
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1527 font-size: 1rem; | 1533 font-size: 1rem; |
1528 color: #077CA6; | 1534 color: #077CA6; |
1529 background-color: #E1F2FA; | 1535 background-color: #E1F2FA; |
1530 } | 1536 } |
1531 | 1537 |
1532 #notification strong | 1538 #notification strong |
1533 { | 1539 { |
1534 flex: 1; | 1540 flex: 1; |
1535 text-align: center; | 1541 text-align: center; |
1536 } | 1542 } |
OLD | NEW |