diff options
author | Chocobozzz <me@florianbigard.com> | 2021-01-20 10:59:47 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-01-20 10:59:47 +0100 |
commit | 840659455ff320853488ebb9904ee3a768863ddb (patch) | |
tree | d8f6922931c55374802b65c20d6a900bf8efc0b4 | |
parent | fd7ca7a72c2a89978fd548025b7980815babf3be (diff) | |
download | PeerTube-840659455ff320853488ebb9904ee3a768863ddb.tar.gz PeerTube-840659455ff320853488ebb9904ee3a768863ddb.tar.zst PeerTube-840659455ff320853488ebb9904ee3a768863ddb.zip |
Fix ng select theme
-rw-r--r-- | client/src/sass/application.scss | 2 | ||||
-rw-r--r-- | client/src/sass/ng-select.scss | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 3f6e6c8a7..1888d9350 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -90,7 +90,7 @@ input.readonly { | |||
90 | 90 | ||
91 | input, textarea { | 91 | input, textarea { |
92 | outline: none; | 92 | outline: none; |
93 | color: pvar(--mainForegroundColor); | 93 | color: pvar(--inputForegroundColor); |
94 | } | 94 | } |
95 | 95 | ||
96 | button { | 96 | button { |
diff --git a/client/src/sass/ng-select.scss b/client/src/sass/ng-select.scss index f836e203c..d7ea73d48 100644 --- a/client/src/sass/ng-select.scss +++ b/client/src/sass/ng-select.scss | |||
@@ -26,4 +26,12 @@ $ng-select-height: 30px; | |||
26 | border-color: #ccc !important; | 26 | border-color: #ccc !important; |
27 | } | 27 | } |
28 | } | 28 | } |
29 | |||
30 | .ng-select-container { | ||
31 | background-color: pvar(--inputBackgroundColor); | ||
32 | } | ||
33 | |||
34 | &.ng-select-single .ng-value-container .ng-value { | ||
35 | color: pvar(--inputForegroundColor); | ||
36 | } | ||
29 | } | 37 | } |