Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: skin/desktop-options.css

Issue 29654555: Issue 6209 - Updated woff fonts and table status column for long texts (Closed)
Patch Set: Addressed Thomas comments Created Feb. 20, 2018, 3:26 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mobile-options.html ('k') | skin/fonts.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 @font-face
19 {
20 font-family: "Source Sans Pro";
21 src: url(fonts/SourceSansPro-Light.woff);
22 /* local("Ø") forces using no local font called Source Sans Pro */
23 src: local("Ø"), url(fonts/SourceSansPro-Light.woff) format("woff");
24 font-weight: 300;
25 font-style: normal;
26 }
27
28 @font-face
29 {
30 font-family: "Source Sans Pro";
31 src: url(fonts/SourceSansPro-Regular.woff);
32 /* local("Ø") forces using no local font called Source Sans Pro */
33 src: local("Ø"), url(fonts/SourceSansPro-Regular.woff) format("woff");
34 font-style: normal;
35 }
36
37 @font-face
38 {
39 font-family: "Source Sans Pro";
40 src: url(fonts/SourceSansPro-bold.woff);
41 /* local("Ø") forces using no local font called Source Sans Pro */
42 src: local("Ø"), url(fonts/SourceSansPro-bold.woff) format("woff");
43 font-weight: 700;
44 font-style: normal;
45 }
46
47 html 18 html
48 { 19 {
49 font-size: 16px; 20 font-size: 16px;
50 } 21 }
51 22
52 body 23 body
53 { 24 {
54 background-color: #F3F3F3; 25 background-color: #F3F3F3;
55 display: flex; 26 display: flex;
56 justify-content: center; 27 justify-content: center;
(...skipping 926 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 { 954 {
984 display: flex; 955 display: flex;
985 } 956 }
986 957
987 .col5 > * 958 .col5 > *
988 { 959 {
989 display: inline-block; 960 display: inline-block;
990 vertical-align: middle; 961 vertical-align: middle;
991 } 962 }
992 963
993 .cols .col5 964 .cols .col5,
965 .th .col5
994 { 966 {
995 margin: 0rem 1rem; 967 margin: 0rem 1rem;
968 align-self: center;
996 } 969 }
997 970
998 .th .col5:nth-of-type(1), 971 .th .col5:nth-of-type(1),
999 .table .col5:nth-of-type(1) 972 .table .col5:nth-of-type(1)
1000 { 973 {
1001 flex: 4; 974 flex: 5;
1002 } 975 }
1003 976
1004 .th .col5:nth-of-type(2), 977 .th .col5:nth-of-type(2),
1005 .table .col5:nth-of-type(2) 978 .table .col5:nth-of-type(2)
1006 { 979 {
1007 flex: 8; 980 flex: 8;
1008 } 981 }
1009 982
1010 .th .col5:nth-of-type(3), 983 .th .col5:nth-of-type(3),
1011 .table .col5:nth-of-type(3) 984 .table .col5:nth-of-type(3)
(...skipping 30 matching lines...) Expand all
1042 .table.cols > span 1015 .table.cols > span
1043 { 1016 {
1044 margin: 0rem; 1017 margin: 0rem;
1045 } 1018 }
1046 1019
1047 .table.cols li 1020 .table.cols li
1048 { 1021 {
1049 padding: 0.5rem 0rem; 1022 padding: 0.5rem 0rem;
1050 } 1023 }
1051 1024
1052 html:not([dir="rtl"]) .table.cols .state 1025 .table.cols .toggle
1053 { 1026 {
1054 margin-left: 1rem; 1027 -moz-margin-end: 0.5rem;
1055 } 1028 -webkit-margin-end: 0.5rem;
1056
1057 html[dir="rtl"] .table.cols .state
1058 {
1059 margin-right: 1rem;
1060 } 1029 }
1061 1030
1062 .table.cols .gear 1031 .table.cols .gear
1063 { 1032 {
1064 margin: 0rem 1033 margin: 0rem
1065 } 1034 }
1066 1035
1067 #dialog .table.list li 1036 #dialog .table.list li
1068 { 1037 {
1069 display: block; 1038 display: block;
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
1592 font-size: 1rem; 1561 font-size: 1rem;
1593 color: #077CA6; 1562 color: #077CA6;
1594 background-color: #E1F2FA; 1563 background-color: #E1F2FA;
1595 } 1564 }
1596 1565
1597 #notification strong 1566 #notification strong
1598 { 1567 {
1599 flex: 1; 1568 flex: 1;
1600 text-align: center; 1569 text-align: center;
1601 } 1570 }
OLDNEW
« no previous file with comments | « mobile-options.html ('k') | skin/fonts.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld