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

Side by Side Diff: skin/options.css

Issue 29338983: issue 3741 - Add "remove" option to list items in new options page (Closed)
Patch Set: Created March 23, 2016, 4:17 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-2016 Eyeo GmbH 3 * Copyright (C) 2006-2016 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 input[type="text"], input[type="search"] 94 input[type="text"], input[type="search"]
95 { 95 {
96 -webkit-box-sizing: border-box; 96 -webkit-box-sizing: border-box;
97 -moz-box-sizing: border-box; 97 -moz-box-sizing: border-box;
98 box-sizing: border-box; 98 box-sizing: border-box;
99 } 99 }
100 100
101 button[role="checkbox"] 101 button[role="checkbox"]
102 { 102 {
103 vertical-align: top;
104 width: 18px; 103 width: 18px;
105 height: 18px; 104 height: 18px;
106 margin-top: 0px; 105 margin-top: 0px;
107 -moz-margin-end: 20px; 106 -moz-margin-end: 20px;
108 -webkit-margin-end: 20px; 107 -webkit-margin-end: 20px;
109 padding: 0px; 108 padding: 0px;
110 border: none; 109 border: none;
111 background-color: transparent; 110 background-color: transparent;
112 background-position: -51px 0px; 111 background-position: -51px 0px;
113 } 112 }
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 { 351 {
353 list-style: none; 352 list-style: none;
354 margin: 0px; 353 margin: 0px;
355 padding: 0px; 354 padding: 0px;
356 position: relative; 355 position: relative;
357 } 356 }
358 357
359 .table li 358 .table li
360 { 359 {
361 display: flex; 360 display: flex;
362 padding: 12px 0px; 361 align-items: center;
363 -webkit-padding-start: 16px; 362 padding: 12px 16px;
364 -moz-padding-start: 16px;
365 border-radius: 3px; 363 border-radius: 3px;
366 } 364 }
367 365
368 .table.list li .display 366 .table.list li .display
369 { 367 {
370 flex: 1; 368 flex: 1;
371 line-height: 16px; 369 line-height: 16px;
372 overflow: hidden; 370 overflow: hidden;
373 text-overflow: ellipsis; 371 text-overflow: ellipsis;
374 white-space: nowrap; 372 white-space: nowrap;
(...skipping 19 matching lines...) Expand all
394 392
395 button[disabled="true"] 393 button[disabled="true"]
396 { 394 {
397 border-radius: 2px; 395 border-radius: 2px;
398 background-color: #ccc; 396 background-color: #ccc;
399 } 397 }
400 398
401 .table button.delete 399 .table button.delete
402 { 400 {
403 background-color: transparent; 401 background-color: transparent;
404 background-position: -9px -32px; 402 background-position: -50px -52px;
405 border: 0px; 403 border: 0px;
406 height: 10px; 404 height: 10px;
407 margin-top: 5px;
408 -moz-margin-end: 20px;
409 -webkit-margin-end: 20px;
410 padding: 0px; 405 padding: 0px;
411 cursor: pointer; 406 cursor: pointer;
412 width: 10px; 407 width: 10px;
413 } 408 }
414 409
415 .table .popular 410 .table button.delete:hover
416 { 411 {
417 color: #1E8728; 412 background-position: -59px -52px;
418 font-size: 12px;
419 -moz-padding-end: 12px;
420 -webkit-padding-end: 12px;
421 } 413 }
422 414
423 .tabs.horizontal 415 .tabs.horizontal
424 { 416 {
425 display: flex; 417 display: flex;
426 margin-bottom: 0px; 418 margin-bottom: 0px;
427 padding: 0px; 419 padding: 0px;
428 } 420 }
429 421
430 .tabs.horizontal li 422 .tabs.horizontal li
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 padding-bottom: 10px; 627 padding-bottom: 10px;
636 color: black; 628 color: black;
637 font-weight: 600; 629 font-weight: 600;
638 } 630 }
639 631
640 #all-filter-lists .table 632 #all-filter-lists .table
641 { 633 {
642 display: inline-block; 634 display: inline-block;
643 } 635 }
644 636
645 #all-filter-lists .table li
646 {
647 padding-left: 16px;
648 padding-right: 16px;
649 }
650
651 #all-filter-lists .table li > div 637 #all-filter-lists .table li > div
652 { 638 {
653 display: flex; 639 display: flex;
654 width: 330px; 640 width: 330px;
655 } 641 }
656 642
657 .table-header 643 .table-header
658 { 644 {
659 display: flex; 645 display: flex;
660 } 646 }
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
1314 #other-language .button-add::before 1300 #other-language .button-add::before
1315 { 1301 {
1316 display: none; 1302 display: none;
1317 } 1303 }
1318 1304
1319 #other-language .display 1305 #other-language .display
1320 { 1306 {
1321 -webkit-margin-start: 10px; 1307 -webkit-margin-start: 10px;
1322 -moz-margin-start: 10px; 1308 -moz-margin-start: 10px;
1323 } 1309 }
OLDNEW
« options.js ('K') | « options.js ('k') | skin/options-sprite.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld