Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/theming/css/settings-admin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/theming/css/settings-admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
margin-bottom: 20px;
cursor: pointer;
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-image: var(--image-background, var(--image-background-plain, url('../../../core/img/app-background.jpg'), linear-gradient(40deg, #0082c9 0%, #30b6ff 100%)));
Copy link
Member

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


#theming-preview-logo {
cursor: pointer;
Expand Down
11 changes: 4 additions & 7 deletions core/css/guest.css
Original file line number Diff line number Diff line change
Expand Up @@ -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%;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The background-position: center center; should stay though so it’s exactly like when logged in?

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%)));
Copy link
Member

Choose a reason for hiding this comment

The 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;
Expand All @@ -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 {
Expand Down