diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2018-09-09 14:43:30 +0200 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2018-09-09 14:43:30 +0200 |
commit | 20c3a59e2c81bb00be943ccc51efe175c08eaa4e (patch) | |
tree | 1e486ad12ce50a8ad12867fa44df8fbc040537df /client/src/sass | |
parent | ed19bb9a3269a9edb247c10d1be1ea20a959f1cb (diff) | |
download | PeerTube-20c3a59e2c81bb00be943ccc51efe175c08eaa4e.tar.gz PeerTube-20c3a59e2c81bb00be943ccc51efe175c08eaa4e.tar.zst PeerTube-20c3a59e2c81bb00be943ccc51efe175c08eaa4e.zip |
add input color to cope with browser themes
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/application.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index bf4cccaaf..8d2bfb077 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -50,11 +50,12 @@ strong { | |||
50 | 50 | ||
51 | input.readonly { | 51 | input.readonly { |
52 | /* Force blank on readonly inputs */ | 52 | /* Force blank on readonly inputs */ |
53 | background-color: #fff !important; | 53 | background-color: var(--inputColor) !important; |
54 | } | 54 | } |
55 | 55 | ||
56 | input, textarea { | 56 | input, textarea { |
57 | outline: none; | 57 | outline: none; |
58 | color: var(--mainForegroundColor); | ||
58 | } | 59 | } |
59 | 60 | ||
60 | label { | 61 | label { |