Skip to content
Merged
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
Use SCSS variables since CSS vars are not loaded on public pages
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr authored and Backportbot committed Mar 14, 2019
commit 1d5149aff6c02b65c09dd19d2b2ce51d2b10dbf2
6 changes: 3 additions & 3 deletions apps/theming/css/theming.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ $invert: luma($color-primary) > 0.6;
label,
p,
#alternative-logins legend {
color: var(--color-primary-text);
color: $color-primary-text;
}
input[type='checkbox'].checkbox--white + label:before {
border-color: nc-darken($color-primary-element, 40%) !important;
Expand All @@ -86,7 +86,7 @@ $invert: luma($color-primary) > 0.6;
}
/* Always give primary button a border for light primary colors */
.primary {
border-color: var(--color-border) !important;
border-color: $color-border !important;
}
} @else {
#appmenu:not(.inverted) svg {
Expand Down Expand Up @@ -193,7 +193,7 @@ input.primary,
#body-login {

a, label, p {
color: var(--color-primary-text);
color: $color-primary-text;
}

}
Expand Down