OLD | NEW |
1 .help-window-outer { | 1 .help-window-outer { |
2 position: absolute !important; | 2 position: absolute !important; |
3 top: 0; | 3 top: 0; |
4 left: 0; | 4 left: 0; |
5 right: 0; | 5 right: 0; |
6 bottom: 0; | 6 bottom: 0; |
7 z-index: 2000; | 7 z-index: 2000; |
8 } | 8 } |
9 | 9 |
10 .help-window-main { | 10 .help-window-main { |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 display: none; | 551 display: none; |
552 } | 552 } |
553 | 553 |
554 .settings-experiment-hidden label { | 554 .settings-experiment-hidden label { |
555 background-color: #ddd; | 555 background-color: #ddd; |
556 } | 556 } |
557 | 557 |
558 .settings-developer-mode .settings-experiment-hidden { | 558 .settings-developer-mode .settings-experiment-hidden { |
559 display: block; | 559 display: block; |
560 } | 560 } |
| 561 |
| 562 .highlighted-setting { |
| 563 animation: highlight-animation 5s linear; |
| 564 animation-iteration-count: 1; |
| 565 } |
| 566 |
| 567 @keyframes highlight-animation { |
| 568 0% { outline: auto 3px transparent; } |
| 569 20% { outline: auto 3px rgb(255, 156, 0); } |
| 570 80% { outline: auto 3px rgb(255, 156, 0); } |
| 571 100% { outline: auto 3px transparent; } |
| 572 } |
OLD | NEW |