| 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 { |
| 11 color: white; | 11 color: white; |
| 12 background-color: rgba(17, 17, 17, 0.85); | 12 background-color: rgba(17, 17, 17, 0.85); |
| 13 display: -webkit-flex; | 13 display: -webkit-flex; |
| 14 -webkit-flex-direction: column; | 14 -webkit-flex-direction: column; |
| 15 border-top-width: 0; | 15 border-top-width: 0; |
| 16 border-radius: 10px; | 16 border-radius: 10px; |
| 17 } | 17 } |
| 18 | 18 |
| 19 .help-window-main a { | |
| 20 color: rgb(17, 85, 204); | |
| 21 } | |
| 22 | |
| 23 .help-window-caption { | 19 .help-window-caption { |
| 24 border-bottom: solid 1px rgb(153, 153, 153); | 20 border-bottom: solid 1px rgb(153, 153, 153); |
| 25 margin: 0 8px; | 21 margin: 0 8px; |
| 26 padding: 0 2px; | 22 padding: 0 2px; |
| 27 line-height: 28px; | 23 line-height: 28px; |
| 28 } | 24 } |
| 29 | 25 |
| 30 .help-window-title { | 26 .help-window-title { |
| 31 font-size: 16px; | 27 font-size: 16px; |
| 32 margin: 0; | 28 margin: 0; |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 .settings-experiment-hidden { | 634 .settings-experiment-hidden { |
| 639 display: none; | 635 display: none; |
| 640 } | 636 } |
| 641 | 637 |
| 642 .settings-experiment-hidden label { | 638 .settings-experiment-hidden label { |
| 643 background-color: #ddd; | 639 background-color: #ddd; |
| 644 } | 640 } |
| 645 | 641 |
| 646 .settings-developer-mode .settings-experiment-hidden { | 642 .settings-developer-mode .settings-experiment-hidden { |
| 647 display: block; | 643 display: block; |
| 648 } | 644 } |
| OLD | NEW |