diff options
author | Chocobozzz <me@florianbigard.com> | 2019-01-17 11:30:47 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-01-17 11:34:29 +0100 |
commit | f2fab901df31a0e7081f4bb225f28e98798950b0 (patch) | |
tree | 59a7fc9b5d22837e66654e09429ccfa2555364c6 /client/src/app/shared | |
parent | dc094603cd9eccce3243a6b6ccec3416491f59d2 (diff) | |
download | PeerTube-f2fab901df31a0e7081f4bb225f28e98798950b0.tar.gz PeerTube-f2fab901df31a0e7081f4bb225f28e98798950b0.tar.zst PeerTube-f2fab901df31a0e7081f4bb225f28e98798950b0.zip |
Fix invisible things in dark mode
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/misc/help.component.scss | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/client/src/app/shared/misc/help.component.scss b/client/src/app/shared/misc/help.component.scss index 4565d457a..3898f3cda 100644 --- a/client/src/app/shared/misc/help.component.scss +++ b/client/src/app/shared/misc/help.component.scss | |||
@@ -10,6 +10,8 @@ | |||
10 | position: relative; | 10 | position: relative; |
11 | top: -2px; | 11 | top: -2px; |
12 | margin: 5px; | 12 | margin: 5px; |
13 | |||
14 | @include apply-svg-color(var(--mainForegroundColor)) | ||
13 | } | 15 | } |
14 | } | 16 | } |
15 | 17 | ||
@@ -18,15 +20,15 @@ | |||
18 | max-width: 300px; | 20 | max-width: 300px; |
19 | 21 | ||
20 | .popover-body { | 22 | .popover-body { |
23 | font-family: $main-fonts; | ||
21 | text-align: left; | 24 | text-align: left; |
22 | padding: 10px; | 25 | padding: 10px; |
23 | font-size: 13px; | 26 | font-size: 13px; |
24 | font-family: $main-fonts; | 27 | background-color: var(--mainBackgroundColor); |
25 | background-color: #fff; | 28 | color: var(--mainForegroundColor); |
26 | color: #000; | ||
27 | box-shadow: 0 0 6px rgba(0, 0, 0, 0.5); | 29 | box-shadow: 0 0 6px rgba(0, 0, 0, 0.5); |
28 | 30 | ||
29 | p:last-child { | 31 | p { |
30 | margin-bottom: 0; | 32 | margin-bottom: 0; |
31 | } | 33 | } |
32 | 34 | ||