Left: | ||
Right: |
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-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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
541 Animations | 541 Animations |
542 */ | 542 */ |
543 | 543 |
544 .highlight-animate | 544 .highlight-animate |
545 { | 545 { |
546 animation: highlight 1s 3; | 546 animation: highlight 1s 3; |
547 } | 547 } |
548 | 548 |
549 @keyframes highlight | 549 @keyframes highlight |
550 { | 550 { |
551 0% { background: none } | 551 0% { background-color: transparent } |
a.giammarchi
2018/03/22 18:43:28
I think the neutral value for background-color is
saroyanm
2018/03/22 20:43:21
Done.
| |
552 30% { background: #ffd7a3 } | 552 30% { background-color: #ffd7a3 } |
a.giammarchi
2018/03/22 18:43:28
whenever you're changing only one part of a comple
saroyanm
2018/03/22 20:43:21
Agree, done.
| |
553 70% { background: #ffd7a3 } | 553 70% { background-color: #ffd7a3 } |
554 100% { background: none } | 554 100% { background-color: transparent } |
555 } | 555 } |
556 | 556 |
557 /* | 557 /* |
558 Sidebar | 558 Sidebar |
559 */ | 559 */ |
560 | 560 |
561 #sidebar, | 561 #sidebar, |
562 #sidebar .fixed, | 562 #sidebar .fixed, |
563 [role="tablist"] | 563 [role="tablist"] |
564 { | 564 { |
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1593 font-size: 1rem; | 1593 font-size: 1rem; |
1594 color: #077CA6; | 1594 color: #077CA6; |
1595 background-color: #E1F2FA; | 1595 background-color: #E1F2FA; |
1596 } | 1596 } |
1597 | 1597 |
1598 #notification strong | 1598 #notification strong |
1599 { | 1599 { |
1600 flex: 1; | 1600 flex: 1; |
1601 text-align: center; | 1601 text-align: center; |
1602 } | 1602 } |
LEFT | RIGHT |