OLD | NEW |
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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 display: block; | 531 display: block; |
532 visibility: hidden; | 532 visibility: hidden; |
533 } | 533 } |
534 | 534 |
535 [data-validation] .floating-input input:focus:invalid ~ .error-msg | 535 [data-validation] .floating-input input:focus:invalid ~ .error-msg |
536 { | 536 { |
537 visibility: visible; | 537 visibility: visible; |
538 } | 538 } |
539 | 539 |
540 /* | 540 /* |
| 541 Animations |
| 542 */ |
| 543 |
| 544 .highlight-animate |
| 545 { |
| 546 animation: highlight 1s 3; |
| 547 } |
| 548 |
| 549 @keyframes highlight |
| 550 { |
| 551 0% { background-color: transparent } |
| 552 30% { background-color: #ffd7a3 } |
| 553 70% { background-color: #ffd7a3 } |
| 554 100% { background-color: transparent } |
| 555 } |
| 556 |
| 557 /* |
541 Sidebar | 558 Sidebar |
542 */ | 559 */ |
543 | 560 |
544 #sidebar, | 561 #sidebar, |
545 #sidebar .fixed, | 562 #sidebar .fixed, |
546 [role="tablist"] | 563 [role="tablist"] |
547 { | 564 { |
548 width: 14.3rem; | 565 width: 14.3rem; |
549 } | 566 } |
550 | 567 |
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1576 font-size: 1rem; | 1593 font-size: 1rem; |
1577 color: #077CA6; | 1594 color: #077CA6; |
1578 background-color: #E1F2FA; | 1595 background-color: #E1F2FA; |
1579 } | 1596 } |
1580 | 1597 |
1581 #notification strong | 1598 #notification strong |
1582 { | 1599 { |
1583 flex: 1; | 1600 flex: 1; |
1584 text-align: center; | 1601 text-align: center; |
1585 } | 1602 } |
OLD | NEW |