aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2018-09-09 14:43:30 +0200
committerRigel Kent <sendmemail@rigelk.eu>2018-09-09 14:43:30 +0200
commit20c3a59e2c81bb00be943ccc51efe175c08eaa4e (patch)
tree1e486ad12ce50a8ad12867fa44df8fbc040537df /client/src
parented19bb9a3269a9edb247c10d1be1ea20a959f1cb (diff)
downloadPeerTube-20c3a59e2c81bb00be943ccc51efe175c08eaa4e.tar.gz
PeerTube-20c3a59e2c81bb00be943ccc51efe175c08eaa4e.tar.zst
PeerTube-20c3a59e2c81bb00be943ccc51efe175c08eaa4e.zip
add input color to cope with browser themes
Diffstat (limited to 'client/src')
-rw-r--r--client/src/sass/application.scss3
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
51input.readonly { 51input.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
56input, textarea { 56input, textarea {
57 outline: none; 57 outline: none;
58 color: var(--mainForegroundColor);
58} 59}
59 60
60label { 61label {