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
25 changes: 22 additions & 3 deletions apps/theming/css/theming.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ $invert: luma($color-primary) > 0.6;
a,
label,
p,
#alternative-logins legend {
#alternative-logins legend,
.lost-password-container #lost-password {
color: $color-primary-text;
}
input[type='checkbox'].checkbox--white + label:before {
Expand Down Expand Up @@ -175,8 +176,26 @@ input.primary,
}

@if ($invert) {
#body-login #submit-wrapper .icon-confirm-white {
background-image: url('../../../core/img/actions/confirm.svg');
#body-login {
.body-login-container {
background-color: $color-main-background;
}
#submit-wrapper .icon-confirm-white {
background-image: url('../../../core/img/actions/confirm.svg');
}
.body-login-container {
h2 {
color: $color-main-text;
}
.icon-search.icon-white {
// CSS variable is not used here since it is on the public page layout,
// where the dark theme doesn't apply at the moment
background-image: url('../../../core/img/actions/search.svg');
}
}
}
#body-public #header .icon-more-white {
background-image: var(--icon-more-000);
}
}

Expand Down
2 changes: 1 addition & 1 deletion core/css/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ nav[role='navigation'] {
text-overflow: initial;
width: auto;
overflow: hidden;
background-color: var(--color-primary-element);
background-color: var(--color-primary);
padding: 0 5px;
z-index: 2;
}
Expand Down