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

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

Issue 29536681: Issue 5628 - Implement main styles (Closed)
Left Patch Set: Created Sept. 6, 2017, 6:26 p.m.
Right Patch Set: Created Sept. 13, 2017, 5:13 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 | « skin/icons/trash.svg ('k') | no next file » | 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 13 matching lines...) Expand all
24 font-weight: 300; 24 font-weight: 300;
25 font-style: normal; 25 font-style: normal;
26 } 26 }
27 27
28 @font-face 28 @font-face
29 { 29 {
30 font-family: "Source Sans Pro"; 30 font-family: "Source Sans Pro";
31 src: url(fonts/SourceSansPro-Regular.woff); 31 src: url(fonts/SourceSansPro-Regular.woff);
32 /* local("Ø") forces using no local font called Source Sans Pro */ 32 /* local("Ø") forces using no local font called Source Sans Pro */
33 src: local("Ø"), url(fonts/SourceSansPro-Regular.woff) format("woff"); 33 src: local("Ø"), url(fonts/SourceSansPro-Regular.woff) format("woff");
34 font-weight: 400;
35 font-style: normal; 34 font-style: normal;
36 } 35 }
37 36
38 @font-face 37 @font-face
39 { 38 {
40 font-family: "Source Sans Pro"; 39 font-family: "Source Sans Pro";
41 src: url(fonts/SourceSansPro-bold.woff); 40 src: url(fonts/SourceSansPro-bold.woff);
42 /* local("Ø") forces using no local font called Source Sans Pro */ 41 /* local("Ø") forces using no local font called Source Sans Pro */
43 src: local("Ø"), url(fonts/SourceSansPro-bold.woff) format("woff"); 42 src: local("Ø"), url(fonts/SourceSansPro-bold.woff) format("woff");
44 font-weight: 700; 43 font-weight: 700;
45 font-style: normal; 44 font-style: normal;
46 } 45 }
47 46
48 html 47 html
49 { 48 {
50 font-size: 16px; 49 font-size: 16px;
51 } 50 }
52 51
53 body 52 body
54 { 53 {
55 background-color: #F3F3F3; 54 background-color: #F3F3F3;
56 display: flex; 55 display: flex;
57 margin: 1.2rem 0.3rem; 56 margin: 1.2rem 0.3rem;
58 font-family: "Source Sans Pro", sans-serif; 57 font-family: "Source Sans Pro", sans-serif;
59 font-weight: 400;
juliandoucette 2017/09/12 22:45:36 NIT: I think 400 is the default across browsers.
saroyanm 2017/09/13 15:26:37 Acknowledged.
saroyanm 2017/09/13 16:47:58 Done.
60 font-size: 1.25rem; 58 font-size: 1.25rem;
61 color: #494949; 59 color: #494949;
62 } 60 }
63 61
64 h1 62 h1
65 { 63 {
66 font-size: 3rem; 64 font-size: 3rem;
67 font-weight: 300; 65 font-weight: 300;
68 } 66 }
69 67
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 } 182 }
185 183
186 button[role="checkbox"][aria-checked="true"].toggle 184 button[role="checkbox"][aria-checked="true"].toggle
187 { 185 {
188 background: url(icons/toggle.svg#on); 186 background: url(icons/toggle.svg#on);
189 } 187 }
190 188
191 button[role="checkbox"].toggle 189 button[role="checkbox"].toggle
192 { 190 {
193 background-position: initial; 191 background-position: initial;
194 width: 2.3rem; 192 width: 2.25rem;
195 height: 1.3rem; 193 height: 1.3rem;
196 } 194 }
197 195
198 button[role="checkbox"][disabled].toggle 196 button[role="checkbox"][disabled].toggle
199 { 197 {
200 background-image: none; 198 background-image: none;
201 } 199 }
202 200
203 button.delete::before 201 button.delete::before
204 { 202 {
205 -webkit-mask: url(icons/trash.svg); 203 -webkit-mask: url(icons/trash.svg);
saroyanm 2017/09/06 19:02:56 Note: I'm using masks currently as it's the most q
juliandoucette 2017/09/12 22:45:38 Acknowledged.
206 mask: url(icons/trash.svg); 204 mask: url(icons/trash.svg);
207 } 205 }
208 206
209 button.gear::before 207 button.gear::before
210 { 208 {
211 -webkit-mask: url(icons/gear.svg); 209 -webkit-mask: url(icons/gear.svg);
212 mask: url(icons/gear.svg); 210 mask: url(icons/gear.svg);
213 } 211 }
214 212
215 button.gear, 213 button.gear,
juliandoucette 2017/09/12 22:45:38 NIT/Suggest: button.icon
saroyanm 2017/09/13 15:26:37 We already specified .icon which loads png sprite,
216 button.delete 214 button.delete
217 { 215 {
218 border: 0px; 216 border: 0px;
219 padding: 0px; 217 padding: 0px;
220 background-color: transparent; 218 background-color: transparent;
221 } 219 }
222 220
223 button.gear::before, 221 button.gear::before,
224 button.delete::before 222 button.delete::before
225 { 223 {
(...skipping 23 matching lines...) Expand all
249 } 247 }
250 248
251 button.link 249 button.link
252 { 250 {
253 border: 0px; 251 border: 0px;
254 background-color: transparent; 252 background-color: transparent;
255 font-weight: 300; 253 font-weight: 300;
256 font-family: inherit; 254 font-family: inherit;
257 text-transform: none; 255 text-transform: none;
258 padding: 0.2rem; 256 padding: 0.2rem;
257 }
258
259 button.link:hover
260 {
261 color: #5CBCE1;
259 } 262 }
260 263
261 button.list 264 button.list
262 { 265 {
263 border-style: solid;; 266 border-style: solid;;
264 border-color: #CDCDCD; 267 border-color: #CDCDCD;
265 border-width: 0px 1px 1px 1px; 268 border-width: 0px 1px 1px 1px;
266 width: 100%; 269 width: 100%;
267 background-color: #E1F2FA; 270 background-color: #E1F2FA;
268 text-align: initial; 271 text-align: initial;
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 } 413 }
411 414
412 main 415 main
413 { 416 {
414 background-color: #FFFFFF; 417 background-color: #FFFFFF;
415 border: 1px solid #CDCDCD; 418 border: 1px solid #CDCDCD;
416 max-width: 46.3rem; 419 max-width: 46.3rem;
417 padding: 0px 0rem 1.4rem 0rem; 420 padding: 0px 0rem 1.4rem 0rem;
418 } 421 }
419 422
420 main > div 423 main > div
juliandoucette 2017/09/12 22:45:38 NIT: This could use some explanation via comment (
421 { 424 {
422 display: none; 425 display: none;
423 } 426 }
424 427
425 main p 428 main p
426 { 429 {
427 margin: 0.8rem 0rem; 430 margin: 0.8rem 0rem;
428 } 431 }
429 432
430 /* 433 /*
431 Sections 434 Sections
432 */ 435 */
433 436
434 [role="tabpanel"] > section, 437 [role="tabpanel"] > section,
435 [role="tabpanel"] > .section 438 [role="tabpanel"] > .section
436 { 439 {
437 padding: 2rem; 440 padding: 2rem;
438 border-top: 1px solid #CDCDCD; 441 border-top: 1px solid #CDCDCD;
439 } 442 }
440 443
441 [role="tabpanel"] > h1, 444 [role="tabpanel"] > header h1,
juliandoucette 2017/09/12 22:45:37 Note: You would have to update these selectors acc
saroyanm 2017/09/13 15:26:36 Acknowledged.
saroyanm 2017/09/13 16:47:59 Done.
442 [role="tabpanel"] > p 445 [role="tabpanel"] > header p
443 { 446 {
444 padding: 0rem 2rem; 447 padding: 0rem 2rem;
445 margin: 1.4rem 0rem; 448 margin: 1.4rem 0rem;
446 } 449 }
447 450
448 section h2, 451 section h2,
449 .section h2 452 .section h2
450 { 453 {
451 margin: 0rem; 454 margin: 0rem;
452 } 455 }
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 #dnt 524 #dnt
522 { 525 {
523 padding: 0.8rem; 526 padding: 0.8rem;
524 border: 1px solid #099CD0; 527 border: 1px solid #099CD0;
525 } 528 }
526 529
527 /* 530 /*
528 Tables 531 Tables
529 */ 532 */
530 533
531 ul.table, 534 ul.table,
juliandoucette 2017/09/12 22:45:38 Note: See related comment in new-options.html
saroyanm 2017/09/13 15:26:37 See comment on the other file.
532 ul.list 535 ul.list
533 { 536 {
534 list-style: none; 537 list-style: none;
535 margin: 0rem; 538 margin: 0rem;
536 padding: 0rem; 539 padding: 0rem;
537 } 540 }
538 541
539 .table li, 542 .table li,
540 .list li 543 .list li
541 { 544 {
(...skipping 29 matching lines...) Expand all
571 li .display 574 li .display
572 { 575 {
573 margin: 0rem 1rem; 576 margin: 0rem 1rem;
574 } 577 }
575 578
576 .table.list li .display 579 .table.list li .display
577 { 580 {
578 flex: 1; 581 flex: 1;
579 } 582 }
580 583
581 .table.list li.empty-placeholder 584 .table.list li.empty-placeholder
juliandoucette 2017/09/12 22:45:36 I wasn't able to find this in the HTML. Does it on
saroyanm 2017/09/13 15:26:37 We are adding the placeholder when the table is em
582 { 585 {
583 padding: 1.3em 1.9em; 586 padding: 1.3em 1.9em;
584 } 587 }
585 588
586 .table.list li.empty-placeholder:not(:last-of-type) 589 .table.list li.empty-placeholder:not(:last-of-type)
587 { 590 {
588 border-bottom: 0px; 591 border-bottom: 0px;
589 } 592 }
590 593
591 #blocking-languages-table .display 594 #blocking-languages-table .display
juliandoucette 2017/09/12 22:45:36 NIT: Why the name "display"?
saroyanm 2017/09/13 15:26:37 We might revisit if we will only use this for filt
592 { 595 {
593 font-weight: 700; 596 font-weight: 700;
594 } 597 }
595 598
596 .table.list button.link 599 .table.list button.link
597 { 600 {
598 font-weight: 700; 601 font-weight: 700;
599 text-transform: uppercase; 602 text-transform: uppercase;
600 }
601
602 .table.list button.link:hover
juliandoucette 2017/09/12 22:45:37 NIT/Suggest: Make this less specific (button.link:
saroyanm 2017/09/13 15:26:36 Acknowledged.
saroyanm 2017/09/13 16:47:58 Done.
603 {
604 color: #5CBCE1;
605 } 603 }
606 604
607 .table:not(.list):not(.cols) li 605 .table:not(.list):not(.cols) li
608 { 606 {
609 padding-top: 0px; 607 padding-top: 0px;
610 padding-bottom: 6px; 608 padding-bottom: 6px;
611 } 609 }
612 610
613 .table li [data-single="visible"], 611 .table li [data-single="visible"],
614 .table li:first-of-type:last-of-type [data-single="hidden"] 612 .table li:first-of-type:last-of-type [data-single="hidden"]
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 .table .col4:nth-of-type(4) 656 .table .col4:nth-of-type(4)
659 { 657 {
660 flex: 1; 658 flex: 1;
661 } 659 }
662 660
663 .table.cols 661 .table.cols
664 { 662 {
665 font-size: 1.1rem; 663 font-size: 1.1rem;
666 } 664 }
667 665
668 .table.cols .display 666 .table.cols .display
juliandoucette 2017/09/12 22:45:36 NIT: See comment above RE: display
669 { 667 {
670 margin: 0rem; 668 margin: 0rem;
671 } 669 }
672 670
673 .table.cols li 671 .table.cols li
674 { 672 {
675 padding: 0.9rem 0rem; 673 padding: 0.9rem 0rem;
676 } 674 }
677 675
678 .table.cols .state 676 .table.cols .state
679 { 677 {
680 -moz-margin-start: 1.1rem; 678 -moz-margin-start: 1.1rem;
juliandoucette 2017/09/12 22:45:37 NIT: Vendor prefixes? (applies elsewhere too)
saroyanm 2017/09/13 15:26:38 This probably make sense to address separately as
681 -webkit-margin-start: 1.1rem; 679 -webkit-margin-start: 1.1rem;
682 } 680 }
683 681
684 .table.cols .gear 682 .table.cols .gear
juliandoucette 2017/09/12 22:45:37 NIT: This doesn't seem to make a difference in Fir
saroyanm 2017/09/13 15:26:37 I think this style need to be specific to the "ico
685 { 683 {
686 margin: 0rem 684 margin: 0rem
687 } 685 }
688 686
689 #dialog .table.list li 687 #dialog .table.list li
690 { 688 {
691 display: block; 689 display: block;
692 border-width: 1px 0px 0px 0px; 690 border-width: 1px 0px 0px 0px;
693 padding: 0rem; 691 padding: 0rem;
694 } 692 }
(...skipping 27 matching lines...) Expand all
722 { 720 {
723 content: ""; 721 content: "";
724 width: 1.3rem; 722 width: 1.3rem;
725 height: 1.3rem; 723 height: 1.3rem;
726 background-color: #BBB; 724 background-color: #BBB;
727 -webkit-mask: url(icons/checkmark.svg); 725 -webkit-mask: url(icons/checkmark.svg);
728 mask: url(icons/checkmark.svg); 726 mask: url(icons/checkmark.svg);
729 margin: 0rem; 727 margin: 0rem;
730 } 728 }
731 729
732 #dialog .table.list li button .display 730 #dialog .table.list li button .display
juliandoucette 2017/09/12 22:45:38 NIT: See comment above about .display
733 { 731 {
734 flex: none; 732 flex: none;
735 margin: 0rem 0.8rem; 733 margin: 0rem 0.8rem;
736 text-transform: none; 734 text-transform: none;
737 } 735 }
738 736
739 /* 737 /*
740 Tooltips 738 Tooltips
741 */ 739 */
742 740
743 .tooltip 741 .tooltip
juliandoucette 2017/09/12 22:45:38 NIT: It's confusing that you call this tooltip. It
saroyanm 2017/09/13 15:26:38 tooltip is within the the "tooltip" container, I'l
744 { 742 {
745 display: inline-block; 743 display: inline-block;
746 position: relative; 744 position: relative;
747 margin: 0rem; 745 margin: 0rem;
748 -moz-margin-end: 1rem; 746 -moz-margin-end: 1rem;
749 -webkit-margin-end: 1rem; 747 -webkit-margin-end: 1rem;
750 748
751 line-height: 1.3rem; 749 line-height: 1.3rem;
752 text-decoration: none; 750 text-decoration: none;
juliandoucette 2017/09/12 22:45:37 NIT: I wasn't able to find where text-decoration:
saroyanm 2017/09/13 15:26:37 We probably have link inside of the tooltip.
753 cursor: default; 751 cursor: default;
juliandoucette 2017/09/12 22:45:37 NIT/Suggest: cursor: help (obviously)
saroyanm 2017/09/13 15:26:38 We will revisit that separately after the style gu
754 } 752 }
755 753
756 .tooltip::before 754 .tooltip::before
757 { 755 {
758 content: ""; 756 content: "";
759 width: 1.3rem; 757 width: 1.3rem;
760 height: 1.3rem; 758 height: 1.3rem;
761 display: block; 759 display: block;
762 background-color: #099DD1; 760 background-color: #099DD1;
763 -webkit-mask: url(icons/tooltip.svg); 761 -webkit-mask: url(icons/tooltip.svg);
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 #all-filter-lists-table button[role="checkbox"][aria-checked="false"] + .state # state-disabled 854 #all-filter-lists-table button[role="checkbox"][aria-checked="false"] + .state # state-disabled
857 { 855 {
858 display: inline; 856 display: inline;
859 } 857 }
860 858
861 #all-filter-lists-table 859 #all-filter-lists-table
862 { 860 {
863 margin-bottom: 1.5rem; 861 margin-bottom: 1.5rem;
864 } 862 }
865 863
866 #custom-filters-raw ~ button, 864 .side-controls button
juliandoucette 2017/09/12 22:45:36 NIT: Why not just #custom-filters button?
saroyanm 2017/09/13 15:26:37 I'll wrap the buttons.
saroyanm 2017/09/13 16:47:58 Done.
867 #all-filter-lists-table ~ button 865 {
868 { 866 margin: 0.8rem 0rem;
869 margin: 0.8rem 0rem;
870 -moz-margin-start: auto; 867 -moz-margin-start: auto;
871 -webkit-margin-start: auto; 868 -webkit-margin-start: auto;
872 } 869 }
873 870
874 #custom-filters h3 871 #custom-filters h3
juliandoucette 2017/09/12 22:45:36 NIT: It seems like this could fit into section h3,
saroyanm 2017/09/13 15:26:37 We need to target this specifically because of the
875 { 872 {
876 margin: 0rem; 873 margin: 0rem;
877 } 874 }
878 875
879 #custom-filters-raw 876 #custom-filters-raw
880 { 877 {
881 width: 100%; 878 width: 100%;
882 height: 23.6rem; 879 height: 23.6rem;
883 padding: 0.8rem 1.3rem; 880 padding: 0.8rem 1.3rem;
juliandoucette 2017/09/12 22:45:37 Note: I think the difference between x and y here
saroyanm 2017/09/13 15:26:36 Style guide error.
884 } 881 }
885 882
886 #custom-filters-raw:focus 883 #custom-filters-raw:focus
887 { 884 {
888 outline: none; 885 outline: none;
889 border: 2px solid #099CD0; 886 border: 2px solid #099CD0;
890 } 887 }
891 888
892 #custom-filters-raw-controls 889 #custom-filters-raw-controls
juliandoucette 2017/09/12 22:45:37 NIT: Looks like you're missing some margin-top her
saroyanm 2017/09/13 15:26:36 Acknowledged.
saroyanm 2017/09/13 16:47:58 Done.
893 { 890 {
894 display: flex; 891 display: flex;
895 justify-content: flex-end; 892 justify-content: flex-end;
896 } 893 }
897 894
898 #custom-filters-raw-controls button 895 #custom-filters-raw-controls button
899 { 896 {
900 -moz-margin-start: 1rem; 897 -moz-margin-start: 1rem;
901 -webkit-margin-start: 1rem; 898 -webkit-margin-start: 1rem;
902 } 899 }
(...skipping 18 matching lines...) Expand all
921 right: -1rem; 918 right: -1rem;
922 margin-top: 1rem; 919 margin-top: 1rem;
923 opacity: 1; 920 opacity: 1;
924 padding: 1.3rem; 921 padding: 1.3rem;
925 position: absolute; 922 position: absolute;
926 -webkit-transition: opacity 200ms ease-in-out 400ms, 923 -webkit-transition: opacity 200ms ease-in-out 400ms,
927 visibility 0ms linear 400ms; 924 visibility 0ms linear 400ms;
928 transition: opacity 200ms ease-in-out 400ms, 925 transition: opacity 200ms ease-in-out 400ms,
929 visibility 0ms linear 400ms; 926 visibility 0ms linear 400ms;
930 visibility: visible; 927 visibility: visible;
931 width: 15rem; 928 width: 15rem;
juliandoucette 2017/09/12 22:45:36 NIT: It's not clear where this width comes from
saroyanm 2017/09/13 15:26:36 eyepick
932 z-index: 1; 929 z-index: 1;
933 } 930 }
934 931
935 html[dir="rtl"] [role="tooltip"] 932 html[dir="rtl"] [role="tooltip"]
936 { 933 {
937 right: auto; 934 right: auto;
938 left: -1rem; 935 left: -1rem;
939 } 936 }
940 937
941 [role="tooltip"], 938 [role="tooltip"],
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
988 { 985 {
989 content: ""; 986 content: "";
990 width: 0rem; 987 width: 0rem;
991 height: 0rem; 988 height: 0rem;
992 position: absolute; 989 position: absolute;
993 } 990 }
994 991
995 [role="tooltip"]::before 992 [role="tooltip"]::before
996 { 993 {
997 border-left: 10px solid transparent; 994 border-left: 10px solid transparent;
998 border-right: 10px solid transparent; 995 border-right: 10px solid transparent;
saroyanm 2017/09/06 19:02:57 Note: I used this solution until we will have asse
juliandoucette 2017/09/12 22:45:38 Acknowledged.
999 border-bottom: 10px solid #099CD0; 996 border-bottom: 10px solid #099CD0;
1000 top: -10px; 997 top: -10px;
1001 right: 15px; 998 right: 15px;
1002 } 999 }
1003 1000
1004 html[dir="rtl"] [role="tooltip"]::before 1001 html[dir="rtl"] [role="tooltip"]::before
1005 { 1002 {
1006 right: auto; 1003 right: auto;
1007 left: 15px; 1004 left: 15px;
1008 } 1005 }
(...skipping 23 matching lines...) Expand all
1032 } 1029 }
1033 1030
1034 .context-menu li[role="menuitem"] > * 1031 .context-menu li[role="menuitem"] > *
1035 { 1032 {
1036 width: 100%; 1033 width: 100%;
1037 display: flex; 1034 display: flex;
1038 border: 0rem; 1035 border: 0rem;
1039 padding: 1rem 0rem; 1036 padding: 1rem 0rem;
1040 color: #099CD0; 1037 color: #099CD0;
1041 font-size: 1.1rem; 1038 font-size: 1.1rem;
1042 font-weight: 400;
1043 text-transform: none; 1039 text-transform: none;
1044 } 1040 }
1045 1041
1046 .context-menu li[role="menuitem"] > *:hover, 1042 .context-menu li[role="menuitem"] > *:hover,
1047 .context-menu li[role="menuitem"] > *:focus 1043 .context-menu li[role="menuitem"] > *:focus
1048 { 1044 {
1049 background-color: #E1F2FA; 1045 background-color: #E1F2FA;
1050 cursor: pointer; 1046 cursor: pointer;
1051 } 1047 }
1052 1048
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 background-color: #099CD0; 1178 background-color: #099CD0;
1183 } 1179 }
1184 1180
1185 #dialog header h3 1181 #dialog header h3
1186 { 1182 {
1187 margin: 0rem; 1183 margin: 0rem;
1188 font-size: 1.375rem; 1184 font-size: 1.375rem;
1189 font-weight: 700; 1185 font-weight: 700;
1190 } 1186 }
1191 1187
1192 #dialog-close, 1188 #dialog-close,
juliandoucette 2017/09/12 22:45:38 NIT/Suggest: This could have something in common w
1193 #hide-notification 1189 #hide-notification
1194 { 1190 {
1195 border: 0rem; 1191 border: 0rem;
1196 padding: 0rem; 1192 padding: 0rem;
1197 margin: 0rem; 1193 margin: 0rem;
1198 background-color: transparent; 1194 background-color: transparent;
1199 cursor: pointer; 1195 cursor: pointer;
1200 } 1196 }
1201 1197
1202 #dialog-close::before, 1198 #dialog-close::before,
juliandoucette 2017/09/12 22:45:38 NIT: Why you are adding this background image ::be
saroyanm 2017/09/13 15:26:36 Acknowledged. I'll address this separately.
1203 #hide-notification::after 1199 #hide-notification::after
1204 { 1200 {
1205 content: ""; 1201 content: "";
1206 display: block; 1202 display: block;
1207 height: 1rem; 1203 height: 1rem;
1208 width: 1rem; 1204 width: 1rem;
1209 border: 0rem; 1205 border: 0rem;
1210 background-color: #FFF; 1206 background-color: #FFF;
1211 -webkit-mask: url(icons/delete.svg); 1207 -webkit-mask: url(icons/delete.svg);
1212 mask: url(icons/delete.svg); 1208 mask: url(icons/delete.svg);
(...skipping 30 matching lines...) Expand all
1243 [data-dialog="about"] .dialog-content 1239 [data-dialog="about"] .dialog-content
1244 { 1240 {
1245 text-align: center; 1241 text-align: center;
1246 } 1242 }
1247 1243
1248 [data-dialog="about"] button 1244 [data-dialog="about"] button
1249 { 1245 {
1250 margin: 1.5rem auto 1.8rem auto; 1246 margin: 1.5rem auto 1.8rem auto;
1251 } 1247 }
1252 1248
1249 [data-dialog="about"] p
1250 {
1251 margin: 0.5rem 0rem;
1252 }
1253
1253 #abp-version 1254 #abp-version
1254 { 1255 {
1255 margin-bottom: 2rem; 1256 margin-bottom: 2rem;
1256 } 1257 }
1257 1258
1258 #dialog label 1259 #dialog label
1259 { 1260 {
1260 font-size: 0.9rem; 1261 font-size: 0.9rem;
1261 font-weight: 400;
1262 margin: 0px; 1262 margin: 0px;
1263 } 1263 }
1264 1264
1265 #dialog input[type="text"] 1265 #dialog input[type="text"]
1266 { 1266 {
1267 border-style: solid;;
juliandoucette 2017/09/12 22:45:36 NIT: The default border-style is solid? And you ha
saroyanm 2017/09/13 15:26:36 Acknowledged.
saroyanm 2017/09/13 16:47:58 Done.
1268 border-color: #CDCDCD; 1267 border-color: #CDCDCD;
1269 border-width: 0px 0px 1px 0px; 1268 border-width: 0px 0px 1px 0px;
1270 font-size: 1.3rem; 1269 font-size: 1.3rem;
1271 padding: 5px; 1270 padding: 5px;
1272 width: 100%; 1271 width: 100%;
1273 } 1272 }
1274 1273
1275 #dialog .table 1274 #dialog .table
1276 { 1275 {
1277 width: 100%; 1276 width: 100%;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
1349 1348
1350 #hide-notification::after 1349 #hide-notification::after
1351 { 1350 {
1352 background-color: #099DD1; 1351 background-color: #099DD1;
1353 } 1352 }
1354 1353
1355 #hide-notification:hover::after 1354 #hide-notification:hover::after
1356 { 1355 {
1357 background-color: #5CBCE1; 1356 background-color: #5CBCE1;
1358 } 1357 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld