Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-06-03 10:17:15 +0300
committerJulius Härtl <jus@bitgrid.net>2020-06-03 10:17:15 +0300
commit81de9e8e9419ce96fa42f362608d36db8d127ba9 (patch)
tree82733345266f2b7a0b36685b0b8ea5a5ca4928d7 /apps/theming
parent796b454021785ac5be8ffb99935e28f1abaaa171 (diff)
Only use background fade if nextcloud blue is set
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming')
-rw-r--r--apps/theming/css/theming.scss53
1 files changed, 23 insertions, 30 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss
index 0e9b922b277..a18176f8b5d 100644
--- a/apps/theming/css/theming.scss
+++ b/apps/theming/css/theming.scss
@@ -8,20 +8,28 @@
}
@mixin faded-background {
- background-image: linear-gradient(40deg, $color-primary 0%, lighten($color-primary, 20%) 100%);
+ background-color: $color-primary;
+
+ @if ($color-primary == #0082C9) {
+ background-image: linear-gradient(40deg, $color-primary 0%, lighten($color-primary, 20%) 100%);
+ } @else {
+ /** This will be overwritten by the faded-background-image mixin if needed */
+ background-image: none;
+ }
}
@mixin faded-background-image {
- @if ($color-primary == #0082C9) or ($has-custom-background == true) {
+ @include faded-background;
+ background-size: contain;
+
+ @if ($color-primary == #0082C9) {
background-image: $image-login-background, linear-gradient(40deg, $color-primary 0%, lighten($color-primary, 20%) 100%);
+ }
- @if($has-custom-background == true) {
- background-size: cover;
- background-repeat: no-repeat;
- }
- } @else {
- @include faded-background;
- background-size: contain;
+ @if($has-custom-background == true) {
+ background-size: cover;
+ background-repeat: no-repeat;
+ background-image: $image-login-background;
}
}
@@ -138,6 +146,12 @@ $invert: luma($color-primary) > 0.6;
@include faded-background;
}
+#body-login,
+#firstrunwizard .firstrunwizard-header,
+#theming-preview {
+ @include faded-background-image;
+}
+
/* override styles for login screen in guest.css */
@if ($has-custom-logo) {
// custom logo
@@ -159,22 +173,6 @@ $invert: luma($color-primary) > 0.6;
}
}
-@if variable_exists('theming-background-mime') and $theming-background-mime != '' {
- #body-login,
- #firstrunwizard .firstrunwizard-header,
- #theming-preview {
- background-image: $image-login-background;
- background-color: $color-primary;
- @include faded-background-image;
- }
-} @else {
- #theming-preview {
- background-image: $image-login-background;
- background-color: $color-primary;
- @include faded-background-image;
- }
-}
-
@if variable_exists('theming-logoheader-mime') and $theming-logoheader-mime != '' {
#theming .advanced-option-logoheader .image-preview,
body:not(#body-login) #header .logo {
@@ -231,7 +229,6 @@ input.primary,
@if $image-login-plain == 'true' {
#body-login, #firstrunwizard .firstrunwizard-header, #theming-preview {
background-image: none !important;
- background-color: $color-primary;
}
#body-login {
@@ -240,10 +237,6 @@ input.primary,
}
}
-} @else {
- #body-login {
- @include faded-background-image;
- }
}
/** Handle primary buttons for bright colors */