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

Delta Between Two Patch Sets: skin/desktop-options.css

Issue 29601581: Issue 5872 - apply style changes (Closed)
Left Patch Set: Addressed Ire's comments Created Nov. 13, 2017, 5:05 p.m.
Right Patch Set: Created Nov. 15, 2017, 2:50 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « desktop-options.html ('k') | skin/icons/checkbox.svg » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 font-size: 16px; 49 font-size: 16px;
50 } 50 }
51 51
52 body 52 body
53 { 53 {
54 background-color: #F3F3F3; 54 background-color: #F3F3F3;
55 display: flex; 55 display: flex;
56 justify-content: center; 56 justify-content: center;
57 /* We force vertical scrollbars to keep the content centered */ 57 /* We force vertical scrollbars to keep the content centered */
58 overflow-y: scroll; 58 overflow-y: scroll;
59 margin: 1.2rem 0.3rem; 59 margin: 1rem 0.3rem;
60 font-family: "Source Sans Pro", sans-serif; 60 font-family: "Source Sans Pro", sans-serif;
61 font-size: 1rem; 61 font-size: 1rem;
62 line-height: 1.5rem; 62 line-height: 1.5rem;
63 color: #4A4A4A; 63 color: #4A4A4A;
64 } 64 }
65 65
66 h1 66 h1
67 { 67 {
68 font-size: 3rem; 68 font-size: 3rem;
69 font-weight: 300; 69 font-weight: 300;
70 line-height: 3rem;
70 } 71 }
71 72
72 h2 73 h2
73 { 74 {
74 font-size: 1.125rem; 75 font-size: 1.125rem;
75 font-weight: 700; 76 font-weight: 700;
76 } 77 }
77 78
78 a 79 a
79 { 80 {
(...skipping 25 matching lines...) Expand all
105 box-sizing: border-box; 106 box-sizing: border-box;
106 } 107 }
107 108
108 /* 109 /*
109 Normalization 110 Normalization
110 */ 111 */
111 112
112 input, 113 input,
113 button 114 button
114 { 115 {
115 font-family: "Source Sans Pro", sans-serif; 116 font-family: inherit;
ire 2017/11/14 16:55:22 Suggest: You can set the font-family to `inherit`
saroyanm 2017/11/14 19:19:00 Done.
116 } 117 }
117 118
118 button 119 button
119 { 120 {
120 border-radius: 0rem; 121 border-radius: 0rem;
121 } 122 }
122 123
123 /* 124 /*
124 Buttons and links 125 Buttons and links
125 */ 126 */
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 button.link, 268 button.link,
268 button.list 269 button.list
269 { 270 {
270 color: #077CA6; 271 color: #077CA6;
271 } 272 }
272 273
273 button.link 274 button.link
274 { 275 {
275 border: 0px; 276 border: 0px;
276 background-color: transparent; 277 background-color: transparent;
277 font-weight: 300; 278 font-weight: 400;
ire 2017/11/14 16:55:22 This font weight should be the same as the body, w
saroyanm 2017/11/14 19:19:01 Done.
278 font-family: inherit; 279 font-family: inherit;
279 text-transform: none; 280 text-transform: none;
281 text-decoration: underline;
280 padding: 0.2rem; 282 padding: 0.2rem;
281 } 283 }
282 284
283 button.link:hover 285 button.link:hover
284 { 286 {
285 color: #5CBCE1; 287 color: #5CBCE1;
286 } 288 }
287 289
288 button.list 290 button.list
289 { 291 {
290 border-style: solid;; 292 border-style: solid;;
291 border-color: #CDCDCD; 293 border-color: #CDCDCD;
292 border-width: 0px 1px 1px 1px; 294 border-width: 1px;
293 width: 100%; 295 width: 100%;
294 background-color: #E1F2FA; 296 background-color: #E1F2FA;
295 text-align: initial; 297 text-align: initial;
296 } 298 }
297 299
298 button.list:hover 300 button.list:hover
299 { 301 {
300 box-shadow: inset 0 0 0 3px #077CA6; 302 box-shadow: inset 0 0 0 3px #077CA6;
ire 2017/11/14 16:55:21 NIT: Because there's no top border, the box-shadow
saroyanm 2017/11/14 19:19:01 I see, not sure what will be quick fix for this, i
ire 2017/11/15 07:00:46 I think you can have the border on all sides norma
saroyanm 2017/11/15 10:39:04 That will require to treat this lists differently,
301 border-color: #077CA6; 303 border-color: #077CA6;
302 } 304 }
303 305
304 .side-controls:not(.wrap) 306 .side-controls:not(.wrap)
305 { 307 {
306 margin: 0.8rem 0rem; 308 margin: 0.8rem 0rem;
307 display: flex; 309 display: flex;
308 justify-content: flex-end; 310 justify-content: flex-end;
309 } 311 }
310 312
(...skipping 20 matching lines...) Expand all
331 position: relative; 333 position: relative;
332 padding-top: 0.7rem; 334 padding-top: 0.7rem;
333 margin: 1.8rem 0rem 0.5rem 0rem; 335 margin: 1.8rem 0rem 0.5rem 0rem;
334 } 336 }
335 337
336 .floating-input input 338 .floating-input input
337 { 339 {
338 border-color: #CDCDCD; 340 border-color: #CDCDCD;
339 border-width: 0px 0px 1px 0px; 341 border-width: 0px 0px 1px 0px;
340 outline: none; 342 outline: none;
341 font-size: 1.3rem; 343 font-size: 1rem;
342 padding: 5px; 344 padding: 5px;
343 width: 100%; 345 width: 100%;
344 } 346 }
345 347
346 .floating-input input:placeholder-shown ~ label, 348 .floating-input input:placeholder-shown ~ label,
347 .floating-input input + label, 349 .floating-input input + label,
348 .floating-input input:focus + label 350 .floating-input input:focus + label
349 { 351 {
350 position: absolute; 352 position: absolute;
351 top: 0.9rem; 353 top: 0.9rem;
352 left: 0.3rem; 354 left: 0.3rem;
353 font-size: 1.3rem; 355 font-size: 1rem;
ire 2017/11/14 16:55:22 According to the spec this should now be 1rem (alt
saroyanm 2017/11/14 19:19:00 Done.
354 } 356 }
355 357
356 .floating-input input + label, 358 .floating-input input + label,
357 .floating-input input:focus + label 359 .floating-input input:focus + label
358 { 360 {
359 top: -0.5rem; 361 top: -0.5rem;
360 font-size: 0.9rem; 362 font-size: 0.9rem;
361 } 363 }
362 364
363 html[dir="rtl"] .floating-input input:placeholder-shown ~ label, 365 html[dir="rtl"] .floating-input input:placeholder-shown ~ label,
(...skipping 12 matching lines...) Expand all
376 [data-validation] .floating-input input:focus:invalid ~ .attention::before, 378 [data-validation] .floating-input input:focus:invalid ~ .attention::before,
377 [data-validation] .floating-input input:valid ~ .attention::before 379 [data-validation] .floating-input input:valid ~ .attention::before
378 { 380 {
379 content: ""; 381 content: "";
380 position: absolute; 382 position: absolute;
381 display: block; 383 display: block;
382 margin: 0.5rem; 384 margin: 0.5rem;
383 height: 1.5rem; 385 height: 1.5rem;
384 width: 1.5rem; 386 width: 1.5rem;
385 border: 0rem; 387 border: 0rem;
386 top: 0.5rem; 388 top: 0.3rem;
387 right: 0rem; 389 right: 0rem;
388 } 390 }
389 391
390 html[dir="rtl"] [data-validation] .floating-input input:focus:invalid ~ .attenti on::before, 392 html[dir="rtl"] [data-validation] .floating-input input:focus:invalid ~ .attenti on::before,
391 html[dir="rtl"] [data-validation] .floating-input input:valid ~ .attention::befo re 393 html[dir="rtl"] [data-validation] .floating-input input:valid ~ .attention::befo re
392 { 394 {
393 left: 0rem; 395 left: 0rem;
394 right: auto; 396 right: auto;
395 } 397 }
396 398
397 [data-validation] .floating-input input:focus:invalid ~ .attention::before 399 [data-validation] .floating-input input:focus:invalid ~ .attention::before
398 { 400 {
399 background-image: url(icons/attention.svg); 401 background-image: url(icons/attention.svg);
400 } 402 }
401 403
402 [data-validation] .floating-input input:valid ~ .attention::before 404 [data-validation] .floating-input input:valid ~ .attention::before
403 { 405 {
404 top: 0.8rem; 406 top: 0.5rem;
405 background-image: url(icons/checkmark.svg#approved); 407 background-image: url(icons/checkmark.svg#approved);
406 } 408 }
407 409
408 [data-validation] .floating-input input ~ .error-msg 410 [data-validation] .floating-input input ~ .error-msg
409 { 411 {
410 margin-top: 0.5rem; 412 margin-top: 0.5rem;
411 color: #C11D27; 413 color: #C11D27;
412 display: block; 414 display: block;
413 visibility: hidden; 415 visibility: hidden;
414 } 416 }
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 462
461 #sidebar header h1 strong 463 #sidebar header h1 strong
462 { 464 {
463 font-weight: 700; 465 font-weight: 700;
464 } 466 }
465 467
466 #sidebar header p 468 #sidebar header p
467 { 469 {
468 margin: 0rem; 470 margin: 0rem;
469 font-size: 2.4rem; 471 font-size: 2.4rem;
472 line-height: 2.6rem;
470 } 473 }
471 474
472 html[dir="rtl"] #sidebar header 475 html[dir="rtl"] #sidebar header
473 { 476 {
474 text-align: left; 477 text-align: left;
475 } 478 }
476 479
477 #sidebar-logo 480 #sidebar-logo
478 { 481 {
479 width: 3rem; 482 width: 3rem;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 531
529 #sidebar footer 532 #sidebar footer
530 { 533 {
531 width: 100%; 534 width: 100%;
532 } 535 }
533 536
534 #sidebar footer p 537 #sidebar footer p
535 { 538 {
536 display: flex; 539 display: flex;
537 justify-content: center; 540 justify-content: center;
538 margin: 1.2rem 0rem; 541 margin: 1rem 0rem;
539 } 542 }
540 543
541 /* This is a stopgap solution of footer overlapping tabs on low resolutions */ 544 /* This is a stopgap solution of footer overlapping tabs on low resolutions */
542 @media (min-height: 37rem) 545 @media (min-height: 37rem)
543 { 546 {
544 #sidebar .fixed 547 #sidebar .fixed
545 { 548 {
546 position: fixed; 549 position: fixed;
547 } 550 }
548 551
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 margin: 0.8rem 0rem; 586 margin: 0.8rem 0rem;
584 } 587 }
585 588
586 /* 589 /*
587 Sections 590 Sections
588 */ 591 */
589 592
590 [role="tabpanel"] > section, 593 [role="tabpanel"] > section,
591 [role="tabpanel"] > .section 594 [role="tabpanel"] > .section
592 { 595 {
593 padding: 2rem; 596 padding: 1.4rem 2rem;
594 border-top: 1px solid #CDCDCD; 597 border-top: 1px solid #CDCDCD;
595 } 598 }
596 599
597 [role="tabpanel"] > header h1, 600 [role="tabpanel"] > header h1,
598 [role="tabpanel"] > header p 601 [role="tabpanel"] > header p
599 { 602 {
600 padding: 0rem 2rem; 603 padding: 0rem 2rem;
601 margin: 1.4rem 0rem; 604 margin: 1.4rem 0rem;
602 } 605 }
603 606
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 flex-shrink: 0; 732 flex-shrink: 0;
730 } 733 }
731 734
732 .table li:first-of-type 735 .table li:first-of-type
733 { 736 {
734 border-top: 1px solid #CDCDCD; 737 border-top: 1px solid #CDCDCD;
735 } 738 }
736 739
737 .table.list li 740 .table.list li
738 { 741 {
739 padding: 0.5rem 1rem; 742 padding: 0.5rem 1rem;
ire 2017/11/14 16:55:21 The horizontal padding on the default tables shoul
saroyanm 2017/11/14 19:19:01 Seems like it's 1rem still ( https://bitbucket.org
740 margin: 0rem; 743 margin: 0rem;
741 } 744 }
742 745
746 .table.list.bottom-control li:last-of-type
747 {
748 border-bottom: 0px;
749 }
750
743 li .display 751 li .display
744 { 752 {
745 margin: 0rem 1rem; 753 margin: 0rem 1rem;
746 } 754 }
747 755
748 .table.list li .display 756 .table.list li .display
749 { 757 {
750 flex: 1; 758 flex: 1;
751 margin: 0rem; 759 margin: 0rem;
752 } 760 }
753 761
754 .table.list li.empty-placeholder 762 .table.list li.empty-placeholder
755 { 763 {
756 padding: 1.3em 1.9em; 764 padding: 1rem 1.4rem;
757 } 765 }
758 766
759 .table.list li.empty-placeholder:not(:last-of-type) 767 .table.list li.empty-placeholder:not(:last-of-type)
760 { 768 {
761 border-bottom: 0px; 769 border-bottom: 0px;
762 }
763
764 #blocking-languages-table .display
765 {
766 font-weight: 700;
ire 2017/11/14 16:55:22 This should be styled like the body text, i.e. 400
saroyanm 2017/11/14 19:19:00 Done.
767 } 770 }
768 771
769 .table.list button.link 772 .table.list button.link
770 { 773 {
771 font-weight: 700; 774 font-weight: 700;
772 text-transform: uppercase; 775 text-transform: uppercase;
776 text-decoration: none;
773 } 777 }
774 778
775 .table:not(.list):not(.cols) li 779 .table:not(.list):not(.cols) li
776 { 780 {
777 padding-top: 0px; 781 padding-top: 0px;
778 padding-bottom: 6px; 782 padding-bottom: 6px;
779 } 783 }
780 784
781 .table li [data-single="visible"], 785 .table li [data-single="visible"],
782 .table li:first-of-type:last-of-type [data-single="hidden"] 786 .table li:first-of-type:last-of-type [data-single="hidden"]
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 height: 1.3rem; 902 height: 1.3rem;
899 background-image: url(icons/checkmark.svg#default); 903 background-image: url(icons/checkmark.svg#default);
900 margin: 0rem; 904 margin: 0rem;
901 } 905 }
902 906
903 #dialog .table.list li button .display 907 #dialog .table.list li button .display
904 { 908 {
905 flex: none; 909 flex: none;
906 margin: 0rem 0.8rem; 910 margin: 0rem 0.8rem;
907 text-transform: none; 911 text-transform: none;
912 font-weight: 400;
908 } 913 }
909 914
910 /* 915 /*
911 Tooltips 916 Tooltips
912 */ 917 */
913 918
914 .tooltip 919 .tooltip
915 { 920 {
916 display: inline-block; 921 display: inline-block;
917 position: relative; 922 position: relative;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 } 989 }
985 990
986 #content-whitelist form button 991 #content-whitelist form button
987 { 992 {
988 -moz-margin-start: 0.7rem; 993 -moz-margin-start: 0.7rem;
989 -webkit-margin-start: 0.7rem; 994 -webkit-margin-start: 0.7rem;
990 } 995 }
991 996
992 #whitelisting-table li 997 #whitelisting-table li
993 { 998 {
999 padding-left: 1.4rem;
1000 padding-right: 1.4rem;
994 border-left: 0rem; 1001 border-left: 0rem;
995 border-right: 0rem; 1002 border-right: 0rem;
996 } 1003 }
997 1004
998 /* 1005 /*
999 Advanced tab content 1006 Advanced tab content
1000 */ 1007 */
1001 1008
1002 #all-filter-lists-table li.show-message .last-update, 1009 #all-filter-lists-table li.show-message .last-update,
1003 #all-filter-lists-table li:not(.show-message) .message, 1010 #all-filter-lists-table li:not(.show-message) .message,
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 li [role="menubar"] 1064 li [role="menubar"]
1058 { 1065 {
1059 position: relative; 1066 position: relative;
1060 } 1067 }
1061 1068
1062 [role="tooltip"] 1069 [role="tooltip"]
1063 { 1070 {
1064 right: -1rem; 1071 right: -1rem;
1065 margin-top: 1rem; 1072 margin-top: 1rem;
1066 opacity: 1; 1073 opacity: 1;
1067 padding: 1.3rem; 1074 padding: 0.2rem 1rem;
ire 2017/11/14 16:55:21 According to the spec this padding should be 1rem
saroyanm 2017/11/14 19:19:00 Done, I also didn't calculate the vertical margins
1068 position: absolute; 1075 position: absolute;
1069 -webkit-transition: opacity 200ms ease-in-out 400ms, 1076 -webkit-transition: opacity 200ms ease-in-out 400ms,
1070 visibility 0ms linear 400ms; 1077 visibility 0ms linear 400ms;
1071 transition: opacity 200ms ease-in-out 400ms, 1078 transition: opacity 200ms ease-in-out 400ms,
1072 visibility 0ms linear 400ms; 1079 visibility 0ms linear 400ms;
1073 visibility: visible; 1080 visibility: visible;
1074 width: 15rem; 1081 width: 15rem;
1075 z-index: 1; 1082 z-index: 1;
1076 } 1083 }
1077 1084
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
1174 padding: 0rem; 1181 padding: 0rem;
1175 } 1182 }
1176 1183
1177 .context-menu li[role="menuitem"] > * 1184 .context-menu li[role="menuitem"] > *
1178 { 1185 {
1179 width: 100%; 1186 width: 100%;
1180 display: flex; 1187 display: flex;
1181 border: 0rem; 1188 border: 0rem;
1182 padding: 0.7rem 0rem; 1189 padding: 0.7rem 0rem;
1183 color: #077CA6; 1190 color: #077CA6;
1191 align-items: center;
1184 font-size: 1rem; 1192 font-size: 1rem;
1185 font-weight: 700; 1193 font-weight: 400;
ire 2017/11/14 16:55:21 It looks like this should be 400 in the spec image
saroyanm 2017/11/14 19:19:01 Agree, done.
1186 text-transform: none; 1194 text-transform: none;
1187 text-decoration: none; 1195 text-decoration: none;
1188 } 1196 }
1189 1197
1190 .context-menu li[role="menuitem"] > *:hover, 1198 .context-menu li[role="menuitem"] > *:hover,
1191 .context-menu li[role="menuitem"] > *:focus 1199 .context-menu li[role="menuitem"] > *:focus
1192 { 1200 {
1193 background-color: #E1F2FA; 1201 background-color: #E1F2FA;
1194 cursor: pointer; 1202 cursor: pointer;
1195 } 1203 }
1196 1204
1197 .context-menu li[role="menuitem"] > *::before 1205 .context-menu li[role="menuitem"] > *::before
ire 2017/11/15 07:00:46 The icons are not vertically aligned with the text
saroyanm 2017/11/15 10:39:04 Done.
1198 { 1206 {
1199 content: ""; 1207 content: "";
1200 height: 1rem; 1208 height: 1rem;
1201 width: 1rem; 1209 width: 1rem;
1202 margin: 0rem 1.1rem; 1210 margin: 0rem 1.1rem;
1211 border: 0rem;
1203 } 1212 }
1204 1213
1205 .context-menu .update-subscription::before 1214 .context-menu .update-subscription::before
1206 { 1215 {
1207 background-image: url(icons/reload.svg); 1216 background-image: url(icons/reload.svg);
1208 } 1217 }
1209 1218
1210 .context-menu .website::before 1219 .context-menu .website::before
1211 { 1220 {
1212 background-image: url(icons/globe.svg); 1221 background-image: url(icons/globe.svg);
(...skipping 29 matching lines...) Expand all
1242 { 1251 {
1243 display: inline-block; 1252 display: inline-block;
1244 -moz-margin-end: 1rem; 1253 -moz-margin-end: 1rem;
1245 -webkit-margin-end: 1rem; 1254 -webkit-margin-end: 1rem;
1246 } 1255 }
1247 1256
1248 #social ul li a 1257 #social ul li a
1249 { 1258 {
1250 display: block; 1259 display: block;
1251 text-align: center; 1260 text-align: center;
1261 text-decoration: none;
1252 } 1262 }
1253 1263
1254 #social ul li a::before 1264 #social ul li a::before
1255 { 1265 {
1256 display: block; 1266 display: block;
1257 margin: 0em auto; 1267 margin: 0em auto;
1258 width: 2.5rem; 1268 width: 2.5rem;
1259 height: 2.5rem; 1269 height: 2.5rem;
1260 content: ""; 1270 content: "";
1261 } 1271 }
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
1310 background-color: #FFFFFF; 1320 background-color: #FFFFFF;
1311 } 1321 }
1312 1322
1313 #dialog header 1323 #dialog header
1314 { 1324 {
1315 display: flex; 1325 display: flex;
1316 padding: 0.7rem 1.5rem; 1326 padding: 0.7rem 1.5rem;
1317 background-color: #077CA6; 1327 background-color: #077CA6;
1318 } 1328 }
1319 1329
1320 #dialog header h3 1330 #dialog header h3
ire 2017/11/14 16:55:22 It's a bit unclear from the spec how this should l
saroyanm 2017/11/14 19:19:00 Thanks for bringing this up, the agreement is to p
ire 2017/11/15 07:00:46 Acknowledged.
1321 { 1331 {
1322 margin: 0rem; 1332 margin: 0rem;
1323 font-size: 1rem; 1333 font-size: 1rem;
1324 font-weight: 700; 1334 font-weight: 700;
1325 } 1335 }
1326 1336
1327 #dialog-close, 1337 #dialog-close,
1328 #hide-notification 1338 #hide-notification
1329 { 1339 {
1330 border: 0rem; 1340 border: 0rem;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1373 } 1383 }
1374 1384
1375 [data-dialog="about"] button 1385 [data-dialog="about"] button
1376 { 1386 {
1377 margin: 1.5rem auto 1.8rem auto; 1387 margin: 1.5rem auto 1.8rem auto;
1378 } 1388 }
1379 1389
1380 [data-dialog="about"] p 1390 [data-dialog="about"] p
1381 { 1391 {
1382 margin: 0.5rem 0rem; 1392 margin: 0.5rem 0rem;
1383 }
1384
1385 #abp-version
ire 2017/11/14 16:55:22 I don't think this style is needed?
saroyanm 2017/11/14 19:19:01 Done.
1386 {
1387 margin-bottom: 2rem;
1388 } 1393 }
1389 1394
1390 [data-dialog="import"] .side-controls 1395 [data-dialog="import"] .side-controls
1391 { 1396 {
1392 margin-top: 2.45rem; 1397 margin-top: 2.45rem;
1393 } 1398 }
1394 1399
1395 #dialog .table 1400 #dialog .table
1396 { 1401 {
1397 width: 100%; 1402 width: 100%;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
1469 1474
1470 #hide-notification::after 1475 #hide-notification::after
1471 { 1476 {
1472 background-image: url(icons/delete.svg#secondary); 1477 background-image: url(icons/delete.svg#secondary);
1473 } 1478 }
1474 1479
1475 #hide-notification:hover::after 1480 #hide-notification:hover::after
1476 { 1481 {
1477 background-image: url(icons/delete.svg#secondary-hover); 1482 background-image: url(icons/delete.svg#secondary-hover);
1478 } 1483 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld