From 1fd3ef3fb49cf5482f2ab6f827a2b059a44f409c Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Thu, 20 Sep 2018 20:57:18 +0200 Subject: fix nav tab and tag color in dark theme --- .../app/+admin/follows/following-add/following-add.component.scss | 7 +++++++ .../src/app/videos/+video-edit/shared/video-edit.component.scss | 8 +++++--- 2 files changed, 12 insertions(+), 3 deletions(-) (limited to 'client/src/app') diff --git a/client/src/app/+admin/follows/following-add/following-add.component.scss b/client/src/app/+admin/follows/following-add/following-add.component.scss index 7594b502c..1baddc95f 100644 --- a/client/src/app/+admin/follows/following-add/following-add.component.scss +++ b/client/src/app/+admin/follows/following-add/following-add.component.scss @@ -5,6 +5,13 @@ textarea { height: 250px; } +.form-control { + &, &:focus { + background-color: var(--inputColor); + color: var(--mainForegroundColor); + } +} + input[type=submit] { @include peertube-button; @include orange-button; diff --git a/client/src/app/videos/+video-edit/shared/video-edit.component.scss b/client/src/app/videos/+video-edit/shared/video-edit.component.scss index 4d1871231..b039d7ad4 100644 --- a/client/src/app/videos/+video-edit/shared/video-edit.component.scss +++ b/client/src/app/videos/+video-edit/shared/video-edit.component.scss @@ -164,15 +164,17 @@ p-calendar { tag-input-form { input { height: 30px !important; - background-color: #fff !important; + + background-color: var(--mainBackgroundColor) !important; + color: var(--mainForegroundColor) !important; } } tag { - background-color: #E5E5E5 !important; + background-color: var(--inputColor) !important; border-radius: 3px !important; font-size: 15px !important; - color: #000 !important; + color: var(--mainForegroundColor) !important; height: 30px !important; line-height: 30px !important; margin: 0 5px 0 0 !important; -- cgit v1.2.3