aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass/application.scss
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/sass/application.scss')
-rw-r--r--client/src/sass/application.scss25
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
286table { 283table {
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}