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

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

Issue 29338983: issue 3741 - Add "remove" option to list items in new options page (Closed)
Patch Set: Removed label's "for" attribute, added "aria-lable" to addItem Created June 24, 2016, 4:35 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
« no previous file with comments | « new-options.js ('k') | skin/options-sprite.png » ('j') | 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-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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 input[type="search"], 95 input[type="search"],
96 textarea 96 textarea
97 { 97 {
98 -webkit-box-sizing: border-box; 98 -webkit-box-sizing: border-box;
99 -moz-box-sizing: border-box; 99 -moz-box-sizing: border-box;
100 box-sizing: border-box; 100 box-sizing: border-box;
101 } 101 }
102 102
103 button[role="checkbox"] 103 button[role="checkbox"]
104 { 104 {
105 vertical-align: top;
106 width: 18px; 105 width: 18px;
107 height: 18px; 106 height: 18px;
108 margin-top: 0px; 107 margin-top: 0px;
109 -moz-margin-end: 20px; 108 -moz-margin-end: 20px;
110 -webkit-margin-end: 20px; 109 -webkit-margin-end: 20px;
111 padding: 0px; 110 padding: 0px;
112 border: none; 111 border: none;
113 background-color: transparent; 112 background-color: transparent;
114 background-position: -51px 0px; 113 background-position: -51px 0px;
115 } 114 }
(...skipping 236 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, 366 .table.list,
369 #custom-wrapper 367 #custom-wrapper
370 { 368 {
371 border-bottom: 1px solid #CDCDCD; 369 border-bottom: 1px solid #CDCDCD;
372 } 370 }
373 371
374 .table.list li .display, 372 .table.list li .display,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 405
408 button[disabled="true"] 406 button[disabled="true"]
409 { 407 {
410 border-radius: 2px; 408 border-radius: 2px;
411 background-color: #ccc; 409 background-color: #ccc;
412 } 410 }
413 411
414 .table button.delete 412 .table button.delete
415 { 413 {
416 background-color: transparent; 414 background-color: transparent;
417 background-position: -10px -33px; 415 background-position: -50px -51px;
418 border: 0px; 416 border: 0px;
419 margin-top: 5px; 417 height: 10px;
420 -moz-margin-end: 20px;
421 -webkit-margin-end: 20px;
422 padding: 0px; 418 padding: 0px;
419 cursor: pointer;
420 width: 10px;
423 } 421 }
424 422
425 .table .popular 423 .table button.delete:hover
426 { 424 {
427 color: #1E8728; 425 background-position: -61px -51px;
428 font-size: 12px;
429 -moz-padding-end: 12px;
430 -webkit-padding-end: 12px;
431 } 426 }
432 427
433 .tabs.horizontal 428 .tabs.horizontal
434 { 429 {
435 display: flex; 430 display: flex;
436 margin-top: 0px; 431 margin-top: 0px;
437 margin-bottom: 0px; 432 margin-bottom: 0px;
438 padding: 0px; 433 padding: 0px;
439 border-bottom: 1px solid #CDCDCD; 434 border-bottom: 1px solid #CDCDCD;
440 } 435 }
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 { 494 {
500 background-position: -1px -62px; 495 background-position: -1px -62px;
501 } 496 }
502 497
503 .icon-cancel 498 .icon-cancel
504 { 499 {
505 background-position: -12px -62px; 500 background-position: -12px -62px;
506 } 501 }
507 502
508 .icon-enter, 503 .icon-enter,
509 #custom-filters-add button::after, 504 #custom-filters-add button::after
510 .table button.delete
511 { 505 {
512 height: 8px; 506 height: 8px;
513 width: 8px; 507 width: 8px;
514 cursor: pointer; 508 cursor: pointer;
515 } 509 }
516 510
517 #dialog-close::before, 511 #dialog-close::before,
518 .date::before, 512 .date::before,
519 .time::before 513 .time::before
520 { 514 {
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 690
697 body[data-tab="advanced-allFilterLists"] #content-advanced [data-tab="advanced-a llFilterLists"], 691 body[data-tab="advanced-allFilterLists"] #content-advanced [data-tab="advanced-a llFilterLists"],
698 body[data-tab="advanced-customFilters"] #content-advanced [data-tab="advanced-cu stomFilters"] 692 body[data-tab="advanced-customFilters"] #content-advanced [data-tab="advanced-cu stomFilters"]
699 { 693 {
700 border-bottom: 2px solid #1E8728; 694 border-bottom: 2px solid #1E8728;
701 padding-bottom: 10px; 695 padding-bottom: 10px;
702 color: black; 696 color: black;
703 font-weight: 600; 697 font-weight: 600;
704 } 698 }
705 699
706 #all-filter-lists .table li 700 #all-filter-lists .table
707 { 701 {
708 padding-left: 16px; 702 display: inline-block;
709 padding-right: 16px;
710 } 703 }
711 704
712 #all-filter-lists .table li > div 705 #all-filter-lists .table li > div
713 { 706 {
714 display: flex; 707 display: flex;
715 width: 330px; 708 width: 330px;
716 } 709 }
717 710
718 .table-header 711 .table-header
719 { 712 {
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
1326 #other-language .button-add::before 1319 #other-language .button-add::before
1327 { 1320 {
1328 display: none; 1321 display: none;
1329 } 1322 }
1330 1323
1331 #other-language .display 1324 #other-language .display
1332 { 1325 {
1333 -webkit-margin-start: 10px; 1326 -webkit-margin-start: 10px;
1334 -moz-margin-start: 10px; 1327 -moz-margin-start: 10px;
1335 } 1328 }
OLDNEW
« no previous file with comments | « new-options.js ('k') | skin/options-sprite.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld