Merge pull request #14677 from nextcloud/backport/14670/stable15

[stable15] Use SCSS variables since CSS vars are not loaded on public pages
This commit is contained in:
Morris Jobke 2019-03-14 10:08:27 +01:00 committed by GitHub
commit f216e9913a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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;
@ -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 {
@ -193,7 +193,7 @@ input.primary,
#body-login {
a, label, p {
color: var(--color-primary-text);
color: $color-primary-text;
}
}