diff options
author | Chocobozzz <me@florianbigard.com> | 2021-03-25 13:42:55 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2021-03-31 09:05:51 +0200 |
commit | 60c35932f6a14cfe83bb0e54407427cce70171ea (patch) | |
tree | 6d15665a5375e14bea8eb6d63acc8f4139372dad /client/src/sass/application.scss | |
parent | 4097c6d66cb2919c28b5bce44b259e630923fbe0 (diff) | |
download | PeerTube-60c35932f6a14cfe83bb0e54407427cce70171ea.tar.gz PeerTube-60c35932f6a14cfe83bb0e54407427cce70171ea.tar.zst PeerTube-60c35932f6a14cfe83bb0e54407427cce70171ea.zip |
Redesign channel page
Diffstat (limited to 'client/src/sass/application.scss')
-rw-r--r-- | client/src/sass/application.scss | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index a0009eecc..0a92afef3 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -36,7 +36,9 @@ body { | |||
36 | 36 | ||
37 | --menuBackgroundColor: #{$menu-background}; | 37 | --menuBackgroundColor: #{$menu-background}; |
38 | --menuForegroundColor: #{$menu-color}; | 38 | --menuForegroundColor: #{$menu-color}; |
39 | |||
39 | --submenuColor: #{$sub-menu-color}; | 40 | --submenuColor: #{$sub-menu-color}; |
41 | --channelBackgroundColor: #{$channel-background-color}; | ||
40 | 42 | ||
41 | --inputForegroundColor: #{$input-foreground-color}; | 43 | --inputForegroundColor: #{$input-foreground-color}; |
42 | --inputBackgroundColor: #{$input-background-color}; | 44 | --inputBackgroundColor: #{$input-background-color}; |
@@ -277,11 +279,6 @@ my-input-toggle-hidden ::ng-deep input { | |||
277 | font-weight: bold; | 279 | font-weight: bold; |
278 | } | 280 | } |
279 | 281 | ||
280 | @keyframes spin { | ||
281 | from { transform: scale(1) rotate(0deg);} | ||
282 | to { transform: scale(1) rotate(360deg);} | ||
283 | } | ||
284 | |||
285 | // In tables, don't have a hover different background | 282 | // In tables, don't have a hover different background |
286 | table { | 283 | table { |
287 | .action-button-edit, .action-button-delete { | 284 | .action-button-edit, .action-button-delete { |
@@ -468,3 +465,21 @@ ngx-loading-bar { | |||
468 | } | 465 | } |
469 | } | 466 | } |
470 | } | 467 | } |
468 | |||
469 | // Utils | ||
470 | |||
471 | .peertube-button { | ||
472 | @include peertube-button; | ||
473 | } | ||
474 | |||
475 | .peertube-button-link { | ||
476 | @include peertube-button-link; | ||
477 | } | ||
478 | |||
479 | .orange-button { | ||
480 | @include orange-button; | ||
481 | } | ||
482 | |||
483 | .orange-button-inverted { | ||
484 | @include orange-button-inverted; | ||
485 | } | ||