aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2018-09-20 20:57:18 +0200
committerRigel Kent <sendmemail@rigelk.eu>2018-09-20 20:57:18 +0200
commit1fd3ef3fb49cf5482f2ab6f827a2b059a44f409c (patch)
treeeee2ef647a5a099f03cfac15dc6c6869e57a4834 /client/src/app
parentf845c68305f61686b5d3336fa9251afeae0c083a (diff)
downloadPeerTube-1fd3ef3fb49cf5482f2ab6f827a2b059a44f409c.tar.gz
PeerTube-1fd3ef3fb49cf5482f2ab6f827a2b059a44f409c.tar.zst
PeerTube-1fd3ef3fb49cf5482f2ab6f827a2b059a44f409c.zip
fix nav tab and tag color in dark theme
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/+admin/follows/following-add/following-add.component.scss7
-rw-r--r--client/src/app/videos/+video-edit/shared/video-edit.component.scss8
2 files changed, 12 insertions, 3 deletions
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 {
5 height: 250px; 5 height: 250px;
6} 6}
7 7
8.form-control {
9 &, &:focus {
10 background-color: var(--inputColor);
11 color: var(--mainForegroundColor);
12 }
13}
14
8input[type=submit] { 15input[type=submit] {
9 @include peertube-button; 16 @include peertube-button;
10 @include orange-button; 17 @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 {
164 tag-input-form { 164 tag-input-form {
165 input { 165 input {
166 height: 30px !important; 166 height: 30px !important;
167 background-color: #fff !important; 167
168 background-color: var(--mainBackgroundColor) !important;
169 color: var(--mainForegroundColor) !important;
168 } 170 }
169 } 171 }
170 172
171 tag { 173 tag {
172 background-color: #E5E5E5 !important; 174 background-color: var(--inputColor) !important;
173 border-radius: 3px !important; 175 border-radius: 3px !important;
174 font-size: 15px !important; 176 font-size: 15px !important;
175 color: #000 !important; 177 color: var(--mainForegroundColor) !important;
176 height: 30px !important; 178 height: 30px !important;
177 line-height: 30px !important; 179 line-height: 30px !important;
178 margin: 0 5px 0 0 !important; 180 margin: 0 5px 0 0 !important;