Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-03-27 18:41:46 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-03-28 10:02:46 +0300
commit3860373fd42091790ac2b00039cccd22e59d0ea5 (patch)
treec2c34992dee5a82ded9ac3fd3caa5157fcceac85 /apps/theming/css
parent5ae9eda3144e1edea6db3630f5f1e6fe2f948a9e (diff)
Fix various theming issues on bright colors
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/css')
-rw-r--r--apps/theming/css/theming.scss25
1 files changed, 22 insertions, 3 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss
index 928c54bc105..23c12be7b2d 100644
--- a/apps/theming/css/theming.scss
+++ b/apps/theming/css/theming.scss
@@ -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 {
@@ -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);
}
}