-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Change default login background to cloud image #34000
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,14 +21,11 @@ body { | |
| font-size: .875em; | ||
| line-height: 1.6em; | ||
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; | ||
| color: var(--color-primary-text); | ||
| color: var(--color-text); | ||
| text-align: center; | ||
| background-color: var(--color-primary); | ||
| background-image: var(--image-background, var(--image-background-plain, url('../../../core/img/background.svg'), linear-gradient(40deg, #0082c9 0%, #30b6ff 100%))); | ||
| background-position: 50% 50%; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| background-repeat: repeat; | ||
| background-size: var(--image-background-size, 275px, contain); | ||
| background-attachment: fixed; /* fix background gradient */ | ||
| background-image: var(--image-background, var(--image-background-plain, url('../../../core/img/app-background.jpg'), linear-gradient(40deg, #0082c9 0%, #30b6ff 100%))); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here |
||
| background-attachment: fixed; | ||
| min-height: 100%; /* fix sticky footer */ | ||
| height: auto; | ||
| overflow: auto; | ||
|
|
@@ -40,7 +37,7 @@ body { | |
| font-weight: 600; | ||
| } | ||
| #body-login footer a { | ||
| color: var(--color-primary-text); | ||
| color: var(--color-text); | ||
| } | ||
| #body-login a:not(.button):hover, | ||
| #body-login a:not(.button):focus { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, and additionally the fallback could be changed from the linear-gradient to the plain color
#0082c9(our primary)? @CarlSchwan