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-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 border-radius: 5px; | 412 border-radius: 5px; |
413 padding: 0px 40px; | 413 padding: 0px 40px; |
414 } | 414 } |
415 | 415 |
416 .table::-webkit-scrollbar-thumb:hover, | 416 .table::-webkit-scrollbar-thumb:hover, |
417 #custom-wrapper::-webkit-scrollbar-thumb:hover | 417 #custom-wrapper::-webkit-scrollbar-thumb:hover |
418 { | 418 { |
419 background-color: #A1A1A1; | 419 background-color: #A1A1A1; |
420 } | 420 } |
421 | 421 |
| 422 .table input[type="checkbox"] |
| 423 { |
| 424 margin-top: 0px; |
| 425 -moz-margin-end: 20px; |
| 426 -webkit-margin-end: 20px; |
| 427 padding: 0px 0px 0px 0px; |
| 428 visibility: hidden; |
| 429 } |
| 430 |
| 431 .table input[type="checkbox"]::before |
| 432 { |
| 433 content: ""; |
| 434 background-position: -51px 0px; |
| 435 height: 18px; |
| 436 width: 18px; |
| 437 visibility: visible; |
| 438 } |
| 439 |
| 440 .table input[type="checkbox"]:checked::before |
| 441 { |
| 442 content: ""; |
| 443 background-position: -68px 0px; |
| 444 height: 18px; |
| 445 padding: 0px; |
| 446 width: 18px; |
| 447 visibility: visible; |
| 448 } |
| 449 |
422 .table button.delete | 450 .table button.delete |
423 { | 451 { |
424 background-color: transparent; | 452 background-color: transparent; |
425 background-position: -9px -32px; | 453 background-position: -9px -32px; |
426 border: 0px; | 454 border: 0px; |
427 height: 10px; | 455 height: 10px; |
428 margin-top: 5px; | 456 margin-top: 5px; |
429 -moz-margin-end: 20px; | 457 -moz-margin-end: 20px; |
430 -webkit-margin-end: 20px; | 458 -webkit-margin-end: 20px; |
431 padding: 0px; | 459 padding: 0px; |
(...skipping 26 matching lines...) Expand all Loading... |
458 } | 486 } |
459 | 487 |
460 .tabs.horizontal li.active | 488 .tabs.horizontal li.active |
461 { | 489 { |
462 border-bottom: 2px solid #1E8728; | 490 border-bottom: 2px solid #1E8728; |
463 color: black; | 491 color: black; |
464 font-weight: 600; | 492 font-weight: 600; |
465 padding-bottom: 10px; | 493 padding-bottom: 10px; |
466 } | 494 } |
467 | 495 |
468 .icon, | 496 .icon, .table button[role="checkbox"], .table button.delete, |
469 button[role="checkbox"], | 497 #content-help a::before, #dialog-close::before, |
470 .table button.delete, | |
471 #content-help a::before, | |
472 #dialog-close::before, | |
473 #custom-filters-add button::after, | 498 #custom-filters-add button::after, |
474 #dialog-body button::before | 499 #dialog-body button::before |
475 { | 500 { |
476 background-image: url(options-sprite.png); | 501 background-image: url(options-sprite.png); |
477 display: inline-block; | 502 display: inline-block; |
478 } | 503 } |
479 | 504 |
480 .icon-add | 505 .icon-add |
481 { | 506 { |
482 background-position: -0px -0px; | 507 background-position: -0px -0px; |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1096 #other-language .button-add::before | 1121 #other-language .button-add::before |
1097 { | 1122 { |
1098 display: none; | 1123 display: none; |
1099 } | 1124 } |
1100 | 1125 |
1101 #other-language .display | 1126 #other-language .display |
1102 { | 1127 { |
1103 -webkit-margin-start: 10px; | 1128 -webkit-margin-start: 10px; |
1104 -moz-margin-start: 10px; | 1129 -moz-margin-start: 10px; |
1105 } | 1130 } |
LEFT | RIGHT |