diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2018-09-07 22:46:11 +0200 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2018-09-07 22:46:11 +0200 |
commit | ed19bb9a3269a9edb247c10d1be1ea20a959f1cb (patch) | |
tree | ef0470617158cb6257a5bbf60d33d928104343a0 /client/src | |
parent | d972dc7f665026086ad1804a3798ae36adea70c5 (diff) | |
download | PeerTube-ed19bb9a3269a9edb247c10d1be1ea20a959f1cb.tar.gz PeerTube-ed19bb9a3269a9edb247c10d1be1ea20a959f1cb.tar.zst PeerTube-ed19bb9a3269a9edb247c10d1be1ea20a959f1cb.zip |
use css class for loading bar color
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/app/app.component.html | 2 | ||||
-rw-r--r-- | client/src/sass/loading-bar.scss | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/app.component.html b/client/src/app/app.component.html index 0564e1a7b..20e573de1 100644 --- a/client/src/app/app.component.html +++ b/client/src/app/app.component.html | |||
@@ -36,6 +36,6 @@ | |||
36 | </div> | 36 | </div> |
37 | </div> | 37 | </div> |
38 | 38 | ||
39 | <ngx-loading-bar [includeSpinner]="false" color="#F1680D"></ngx-loading-bar> | 39 | <ngx-loading-bar [includeSpinner]="false"></ngx-loading-bar> |
40 | <my-confirm></my-confirm> | 40 | <my-confirm></my-confirm> |
41 | <simple-notifications [options]="notificationOptions"></simple-notifications> | 41 | <simple-notifications [options]="notificationOptions"></simple-notifications> |
diff --git a/client/src/sass/loading-bar.scss b/client/src/sass/loading-bar.scss index d34bf83ee..7d687d479 100644 --- a/client/src/sass/loading-bar.scss +++ b/client/src/sass/loading-bar.scss | |||
@@ -9,7 +9,7 @@ | |||
9 | -moz-transition: 350ms linear all; | 9 | -moz-transition: 350ms linear all; |
10 | -o-transition: 350ms linear all; | 10 | -o-transition: 350ms linear all; |
11 | transition: 350ms linear all; | 11 | transition: 350ms linear all; |
12 | color: #29d; | 12 | color: var(--mainColor); |
13 | } | 13 | } |
14 | 14 | ||
15 | #loading-bar .bar { | 15 | #loading-bar .bar { |
@@ -18,7 +18,7 @@ | |||
18 | -o-transition: width 350ms; | 18 | -o-transition: width 350ms; |
19 | transition: width 350ms; | 19 | transition: width 350ms; |
20 | 20 | ||
21 | background: #29d; | 21 | background: var(--mainColor); |
22 | position: fixed; | 22 | position: fixed; |
23 | z-index: 10002; | 23 | z-index: 10002; |
24 | top: 0; | 24 | top: 0; |