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

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

Issue 29519669: Issue 5539 - Implement "Acceptable Ads notification" (Closed)
Patch Set: Rebased Created Sept. 18, 2017, 10:40 a.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 | « new-options.js ('k') | no next file » | 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
(...skipping 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 mask: url(icons/delete.svg); 1208 mask: url(icons/delete.svg);
1209 } 1209 }
1210 1210
1211 #dialog-close:hover::before 1211 #dialog-close:hover::before
1212 { 1212 {
1213 background-color: #000; 1213 background-color: #000;
1214 } 1214 }
1215 1215
1216 #dialog #dialog-body 1216 #dialog #dialog-body
1217 { 1217 {
1218 max-height: 50vh; 1218 max-height: 60vh;
1219 overflow: auto; 1219 overflow: auto;
1220 } 1220 }
1221 1221
1222 .dialog-content 1222 .dialog-content
1223 { 1223 {
1224 margin: 1rem 1.8rem; 1224 margin: 1rem 1.8rem;
1225 } 1225 }
1226 1226
1227 #dialog-body button 1227 #dialog-body button
1228 { 1228 {
(...skipping 10 matching lines...) Expand all
1239 [data-dialog="about"] .dialog-content 1239 [data-dialog="about"] .dialog-content
1240 { 1240 {
1241 text-align: center; 1241 text-align: center;
1242 } 1242 }
1243 1243
1244 [data-dialog="about"] button 1244 [data-dialog="about"] button
1245 { 1245 {
1246 margin: 1.5rem auto 1.8rem auto; 1246 margin: 1.5rem auto 1.8rem auto;
1247 } 1247 }
1248 1248
1249 [data-dialog="about"] p 1249 [data-dialog="about"] p,
1250 #tracking-notification p
1250 { 1251 {
1251 margin: 0.5rem 0rem; 1252 margin: 0.5rem 0rem;
1252 } 1253 }
1253 1254
1254 #abp-version 1255 #abp-version
1255 { 1256 {
1256 margin-bottom: 2rem; 1257 margin-bottom: 2rem;
1257 } 1258 }
1258 1259
1259 #dialog label 1260 #dialog label
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
1304 body:not([data-dialog="about"]) #dialog-content-about, 1305 body:not([data-dialog="about"]) #dialog-content-about,
1305 body:not([data-dialog="custom"]) #dialog-title-custom, 1306 body:not([data-dialog="custom"]) #dialog-title-custom,
1306 body:not([data-dialog="custom"]) #dialog-content-custom, 1307 body:not([data-dialog="custom"]) #dialog-content-custom,
1307 body:not([data-dialog="language-add"]) #dialog-title-language-add, 1308 body:not([data-dialog="language-add"]) #dialog-title-language-add,
1308 body:not([data-dialog="language-change"]) #dialog-title-language-change, 1309 body:not([data-dialog="language-change"]) #dialog-title-language-change,
1309 body:not([data-dialog="language-add"]):not([data-dialog="language-change"]) #dia log-content-language-add, 1310 body:not([data-dialog="language-add"]):not([data-dialog="language-change"]) #dia log-content-language-add,
1310 body:not([data-dialog="language-add"]) #dialog-body button.add, 1311 body:not([data-dialog="language-add"]) #dialog-body button.add,
1311 body:not([data-dialog="language-change"]) #dialog-body button.change, 1312 body:not([data-dialog="language-change"]) #dialog-body button.change,
1312 body:not([data-dialog="predefined"]) #dialog-title-predefined, 1313 body:not([data-dialog="predefined"]) #dialog-title-predefined,
1313 body:not([data-dialog="predefined"]) #dialog-content-predefined, 1314 body:not([data-dialog="predefined"]) #dialog-content-predefined,
1315 body:not([data-dialog="tracking"]) #dialog-title-tracking,
1316 body:not([data-dialog="tracking"]) #dialog-content-tracking,
1314 body:not([data-dialog]) #dialog 1317 body:not([data-dialog]) #dialog
1315 { 1318 {
1316 display: none; 1319 display: none;
1317 } 1320 }
1318 1321
1319 /* 1322 /*
1320 Notification 1323 Notification
1321 */ 1324 */
1322 1325
1323 #notification 1326 #notification
(...skipping 24 matching lines...) Expand all
1348 1351
1349 #hide-notification::after 1352 #hide-notification::after
1350 { 1353 {
1351 background-color: #099DD1; 1354 background-color: #099DD1;
1352 } 1355 }
1353 1356
1354 #hide-notification:hover::after 1357 #hide-notification:hover::after
1355 { 1358 {
1356 background-color: #5CBCE1; 1359 background-color: #5CBCE1;
1357 } 1360 }
OLDNEW
« no previous file with comments | « new-options.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld