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

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

Issue 29712664: Issue 6432 - Hide remove button for additional filter lists (Closed)
Patch Set: Addressed Thomas's comments Created March 6, 2018, 3:03 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
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
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 display: block; 108 display: block;
109 padding: 0.6rem 0.8rem; 109 padding: 0.6rem 0.8rem;
110 background-color: transparent; 110 background-color: transparent;
111 font-size: 1rem; 111 font-size: 1rem;
112 font-weight: 700; 112 font-weight: 700;
113 text-decoration: none; 113 text-decoration: none;
114 text-transform: uppercase; 114 text-transform: uppercase;
115 cursor: pointer; 115 cursor: pointer;
116 } 116 }
117 117
118 button:disabled,
119 button[aria-disabled="true"]
120 {
121 cursor: default;
122 }
123
118 /* Ignore .icon to avoid overriding "specific" (primary, secondary) styles */ 124 /* Ignore .icon to avoid overriding "specific" (primary, secondary) styles */
119 button.primary:not(.icon), 125 button.primary:not(.icon),
120 .button.primary:not(.icon) 126 .button.primary:not(.icon)
121 { 127 {
122 border: 0px; 128 border: 0px;
123 color: #FFF; 129 color: #FFF;
124 background-color: #077CA6; 130 background-color: #077CA6;
125 } 131 }
126 132
127 button.primary:not([disabled]):not(.icon):hover, 133 button.primary:not([disabled]):not(.icon):hover,
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 { 281 {
276 /* Using ?query as a workaround to chromium bug #643716 */ 282 /* Using ?query as a workaround to chromium bug #643716 */
277 background-image: url(icons/checkbox.svg?off#off); 283 background-image: url(icons/checkbox.svg?off#off);
278 } 284 }
279 285
280 button[role="checkbox"][aria-checked="true"].icon:not(.toggle)::before 286 button[role="checkbox"][aria-checked="true"].icon:not(.toggle)::before
281 { 287 {
282 background-image: url(icons/checkbox.svg?on#on); 288 background-image: url(icons/checkbox.svg?on#on);
283 } 289 }
284 290
291 button[role="checkbox"][aria-checked="true"].icon:disabled:not(.toggle)::before
292 {
293 background-image: url(icons/checkbox.svg?on-disabled#on-disabled);
294 }
295
285 button[role="checkbox"].icon.toggle::before 296 button[role="checkbox"].icon.toggle::before
286 { 297 {
287 background-image: url(icons/toggle.svg?on#on); 298 background-image: url(icons/toggle.svg?on#on);
288 } 299 }
289 300
290 button[role="checkbox"][aria-checked="false"].icon.toggle::before 301 button[role="checkbox"][aria-checked="false"].icon.toggle::before
291 { 302 {
292 background-image: url(icons/toggle.svg?off#off); 303 background-image: url(icons/toggle.svg?off#off);
293 } 304 }
294 305
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 } 1078 }
1068 1079
1069 #dialog .table.list li button > span 1080 #dialog .table.list li button > span
1070 { 1081 {
1071 flex: none; 1082 flex: none;
1072 margin: 0rem 0.8rem; 1083 margin: 0rem 0.8rem;
1073 text-transform: none; 1084 text-transform: none;
1074 font-weight: 400; 1085 font-weight: 400;
1075 } 1086 }
1076 1087
1088 li.preconfigured [data-hide="preconfigured"]
1089 {
1090 display: none !important;
1091 }
1092
1077 /* 1093 /*
1078 Tooltips 1094 Tooltips
1079 */ 1095 */
1080 1096
1081 .tooltip 1097 .tooltip
1082 { 1098 {
1083 position: relative; 1099 position: relative;
1084 margin: 0rem; 1100 margin: 0rem;
1085 line-height: 1.5rem; 1101 line-height: 1.5rem;
1086 text-decoration: none; 1102 text-decoration: none;
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1561 font-size: 1rem; 1577 font-size: 1rem;
1562 color: #077CA6; 1578 color: #077CA6;
1563 background-color: #E1F2FA; 1579 background-color: #E1F2FA;
1564 } 1580 }
1565 1581
1566 #notification strong 1582 #notification strong
1567 { 1583 {
1568 flex: 1; 1584 flex: 1;
1569 text-align: center; 1585 text-align: center;
1570 } 1586 }
OLDNEW
« js/desktop-options.js ('K') | « js/desktop-options.js ('k') | skin/icons/checkbox.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld