LEFT | RIGHT |
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-2017 eyeo GmbH | 3 * Copyright (C) 2006-2017 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 { | 408 { |
409 vertical-align: top; | 409 vertical-align: top; |
410 } | 410 } |
411 | 411 |
412 .table.cols | 412 .table.cols |
413 { | 413 { |
414 border-bottom: 1px solid #CDCDCD; | 414 border-bottom: 1px solid #CDCDCD; |
415 border-top: 1px solid #CDCDCD; | 415 border-top: 1px solid #CDCDCD; |
416 } | 416 } |
417 | 417 |
418 button[disabled="true"] | 418 button[role="checkbox"][disabled] |
419 { | 419 { |
420 border-radius: 2px; | 420 border-radius: 2px; |
421 background-color: #ccc; | 421 background-color: #ccc; |
422 } | 422 } |
423 | 423 |
424 .table button.delete | 424 .table button.delete |
425 { | 425 { |
426 background-color: transparent; | 426 background-color: transparent; |
427 background-position: -50px -51px; | 427 background-position: -50px -51px; |
428 border: 0px; | 428 border: 0px; |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 .icon-save | 505 .icon-save |
506 { | 506 { |
507 background-position: -1px -62px; | 507 background-position: -1px -62px; |
508 } | 508 } |
509 | 509 |
510 .icon-cancel | 510 .icon-cancel |
511 { | 511 { |
512 background-position: -12px -62px; | 512 background-position: -12px -62px; |
513 } | 513 } |
514 | 514 |
515 .icon-enter, | |
516 #custom-filters-add button::after | 515 #custom-filters-add button::after |
517 { | 516 { |
518 height: 8px; | 517 height: 8px; |
519 width: 8px; | 518 width: 8px; |
520 cursor: pointer; | 519 cursor: pointer; |
521 } | 520 } |
522 | 521 |
523 #dialog-close::before, | 522 #dialog-close::before, |
524 .date::before, | 523 .date::before, |
525 .time::before | 524 .time::before |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 { | 603 { |
605 height: 290px; | 604 height: 290px; |
606 overflow: auto; | 605 overflow: auto; |
607 } | 606 } |
608 | 607 |
609 #custom-wrapper .table | 608 #custom-wrapper .table |
610 { | 609 { |
611 width: 100%; | 610 width: 100%; |
612 } | 611 } |
613 | 612 |
614 .icon-enter | 613 .button-add |
615 { | |
616 background-position: -19px -33px; | |
617 position: absolute; | |
618 bottom: 9px; | |
619 -moz-margin-start: -20px; | |
620 -webkit-margin-start: -20px; | |
621 } | |
622 | |
623 .button-add, .cancel-button | |
624 { | 614 { |
625 background-color: transparent; | 615 background-color: transparent; |
626 border: 0px; | 616 border: 0px; |
627 color: #3A7BA6; | 617 color: #3A7BA6; |
628 cursor: pointer; | 618 cursor: pointer; |
629 } | 619 } |
630 | 620 |
631 /* | 621 /* |
632 Advanced tab content | 622 Advanced tab content |
633 */ | 623 */ |
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1292 #other-language .button-add::before | 1282 #other-language .button-add::before |
1293 { | 1283 { |
1294 display: none; | 1284 display: none; |
1295 } | 1285 } |
1296 | 1286 |
1297 #other-language .display | 1287 #other-language .display |
1298 { | 1288 { |
1299 -webkit-margin-start: 10px; | 1289 -webkit-margin-start: 10px; |
1300 -moz-margin-start: 10px; | 1290 -moz-margin-start: 10px; |
1301 } | 1291 } |
LEFT | RIGHT |