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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 padding: 0rem 2rem; | 581 padding: 0rem 2rem; |
582 margin: 1.4rem 0rem; | 582 margin: 1.4rem 0rem; |
583 } | 583 } |
584 | 584 |
585 section h2, | 585 section h2, |
586 .section h2 | 586 .section h2 |
587 { | 587 { |
588 margin: 0rem; | 588 margin: 0rem; |
589 } | 589 } |
590 | 590 |
| 591 section h2 |
| 592 { |
| 593 text-transform: uppercase; |
| 594 } |
| 595 |
591 section, | 596 section, |
592 .section | 597 .section |
593 { | 598 { |
594 clear: both; | 599 clear: both; |
595 } | 600 } |
596 | 601 |
597 section.cols | 602 section.cols |
598 { | 603 { |
599 display: flex; | 604 display: flex; |
600 } | 605 } |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
877 Tooltips | 882 Tooltips |
878 */ | 883 */ |
879 | 884 |
880 .tooltip | 885 .tooltip |
881 { | 886 { |
882 display: inline-block; | 887 display: inline-block; |
883 position: relative; | 888 position: relative; |
884 margin: 0rem; | 889 margin: 0rem; |
885 -moz-margin-end: 1rem; | 890 -moz-margin-end: 1rem; |
886 -webkit-margin-end: 1rem; | 891 -webkit-margin-end: 1rem; |
887 | 892 line-height: 1.5rem; |
888 line-height: 1.3rem; | |
889 text-decoration: none; | 893 text-decoration: none; |
890 cursor: default; | 894 cursor: help; |
891 } | 895 } |
892 | 896 |
893 .tooltip::before | 897 .tooltip::before |
894 { | 898 { |
895 content: ""; | 899 content: ""; |
896 width: 1.3rem; | 900 width: 1.3rem; |
897 height: 1.3rem; | 901 height: 1.3rem; |
898 display: block; | 902 display: block; |
899 background-color: #099DD1; | 903 background-color: #099DD1; |
900 -webkit-mask: url(icons/tooltip.svg); | 904 -webkit-mask: url(icons/tooltip.svg); |
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1447 | 1451 |
1448 #hide-notification::after | 1452 #hide-notification::after |
1449 { | 1453 { |
1450 background-color: #099DD1; | 1454 background-color: #099DD1; |
1451 } | 1455 } |
1452 | 1456 |
1453 #hide-notification:hover::after | 1457 #hide-notification:hover::after |
1454 { | 1458 { |
1455 background-color: #5CBCE1; | 1459 background-color: #5CBCE1; |
1456 } | 1460 } |
OLD | NEW |