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

Delta Between Two Patch Sets: skin/options.css

Issue 29333262: Issue 2359 - Fixed styles of list items in options page (Closed)
Left Patch Set: Created Jan. 6, 2016, 2:28 p.m.
Right Patch Set: Fixed layout and rearranged properties Created Jan. 25, 2016, 6:39 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 | « no previous file | 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-2015 Eyeo GmbH 3 * Copyright (C) 2006-2015 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 } 139 }
140 140
141 .hbox 141 .hbox
142 { 142 {
143 display: flex; 143 display: flex;
144 flex-direction: row; 144 flex-direction: row;
145 } 145 }
146 146
147 .hbox > div 147 .hbox > div
148 { 148 {
149 flex: 1; 149 width: 400px;
150 } 150 }
151 151
152 .tabs li 152 .tabs li
153 { 153 {
154 cursor: pointer; 154 cursor: pointer;
155 display: flex; 155 display: flex;
156 } 156 }
157 157
158 .tabs li a 158 .tabs li a
159 { 159 {
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 342
343 .table.list li .display 343 .table.list li .display
344 { 344 {
345 flex: 1; 345 flex: 1;
346 line-height: 16px; 346 line-height: 16px;
347 overflow: hidden; 347 overflow: hidden;
348 text-overflow: ellipsis; 348 text-overflow: ellipsis;
349 white-space: nowrap; 349 white-space: nowrap;
350 } 350 }
351 351
352 .table.list li:nth-child(odd) 352 .table.list li:nth-child(odd),
353 { 353 .table.cols li:nth-child(even),
354 background-color: #F5F5F5; 354 .table li.empty-placeholder
355 }
356
357 .table.cols li:nth-child(even)
358 { 355 {
359 background-color: #F5F5F5; 356 background-color: #F5F5F5;
360 } 357 }
361 358
362 .table label 359 .table label
363 { 360 {
364 vertical-align: top; 361 vertical-align: top;
365 } 362 }
366 363
367 .table.cols span 364 .table.cols span
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 vertical-align: top; 538 vertical-align: top;
542 } 539 }
543 540
544 /* 541 /*
545 General tab content 542 General tab content
546 */ 543 */
547 544
548 #blocking-languages, 545 #blocking-languages,
549 #acceptable-ads 546 #acceptable-ads
550 { 547 {
551 -moz-padding-end: 40px; 548 -moz-margin-end: 40px;
552 -webkit-padding-end: 40px; 549 -webkit-margin-end: 40px;
553 } 550 }
554 551
555 #custom-wrapper 552 #custom-wrapper
556 { 553 {
557 height: 290px; 554 height: 290px;
558 overflow: auto; 555 overflow: auto;
559 } 556 }
560 557
561 #custom-wrapper .table 558 #custom-wrapper .table
562 { 559 {
563 width: 100%; 560 width: 100%;
564 } 561 }
565 562
566 #whitelisting .controls 563 #whitelisting .controls
567 { 564 {
568 -moz-padding-start: 12px; 565 -moz-padding-start: 12px;
569 -webkit-padding-start: 12px; 566 -webkit-padding-start: 12px;
567 }
568
569 #whitelisting .controls.mode-edit > button,
570 #whitelisting .controls:not(.mode-edit) > div
571 {
572 display: none;
570 } 573 }
571 574
572 #whitelisting .controls input[type="text"] 575 #whitelisting .controls input[type="text"]
573 { 576 {
574 border: 0px; 577 border: 0px;
575 border-bottom: 1px solid #A1A1A1; 578 border-bottom: 1px solid #A1A1A1;
576 -moz-padding-end: 25px; 579 -moz-padding-end: 25px;
577 -webkit-padding-end: 25px; 580 -webkit-padding-end: 25px;
578 -moz-margin-start: 14px; 581 -moz-margin-start: 14px;
579 -webkit-margin-start: 14px; 582 -webkit-margin-start: 14px;
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
914 -webkit-margin-end: 6px; 917 -webkit-margin-end: 6px;
915 } 918 }
916 919
917 /* 920 /*
918 Dialog 921 Dialog
919 */ 922 */
920 923
921 #dialog-background 924 #dialog-background
922 { 925 {
923 display: none; 926 display: none;
924 background-color: white;
925 position: fixed; 927 position: fixed;
926 opacity: 0.7;
927 top: 0px; 928 top: 0px;
928 right: 0px; 929 right: 0px;
929 bottom: 0px; 930 bottom: 0px;
930 left: 0px; 931 left: 0px;
931 z-index: 2; 932 z-index: 2;
933 background-color: white;
934 opacity: 0.7;
932 } 935 }
933 936
934 body[data-dialog] #dialog-background 937 body[data-dialog] #dialog-background
935 { 938 {
936 display: block; 939 display: block;
937 } 940 }
938 941
939 #dialog 942 #dialog
940 { 943 {
941 background-color: #FFFFFF;
942 border: 2px solid #4D9D4B;
943 border-radius: 3px;
944 margin: auto;
945 position: fixed; 944 position: fixed;
946 top: 100px; 945 top: 100px;
947 left: 0px; 946 left: 0px;
948 right: 0px; 947 right: 0px;
949 z-index: 2; 948 z-index: 2;
950 width: 400px; 949 width: 400px;
950 margin: auto;
951 border-radius: 3px;
952 border: 2px solid #4D9D4B;
953 background-color: #FFFFFF;
951 } 954 }
952 955
953 #dialog header 956 #dialog header
954 { 957 {
955 background-color: #4D9D4B;
956 display: flex; 958 display: flex;
957 min-height: 25px; 959 min-height: 25px;
958 padding: 10px; 960 padding: 10px;
961 background-color: #4D9D4B;
959 } 962 }
960 963
961 #dialog-close 964 #dialog-close
962 { 965 {
963 -moz-border-start: 1px solid #25612B; 966 -moz-border-start: 1px solid #25612B;
964 -webkit-border-start: 1px solid #25612B; 967 -webkit-border-start: 1px solid #25612B;
965 color: #0F660F; 968 color: #0F660F;
966 display: inline-block; 969 display: inline-block;
967 height: 20px; 970 height: 20px;
968 font-size: 15px; 971 font-size: 15px;
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 #other-language .button-add::before 1097 #other-language .button-add::before
1095 { 1098 {
1096 display: none; 1099 display: none;
1097 } 1100 }
1098 1101
1099 #other-language .display 1102 #other-language .display
1100 { 1103 {
1101 -webkit-margin-start: 10px; 1104 -webkit-margin-start: 10px;
1102 -moz-margin-start: 10px; 1105 -moz-margin-start: 10px;
1103 } 1106 }
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld