From 6f75c7cf4bdd08a8b24782c1c96b2446d8500eb0 Mon Sep 17 00:00:00 2001 From: amazingrise <8315221+AmazingRise@users.noreply.github.com> Date: Tue, 19 May 2020 00:02:14 +0800 Subject: Fix uncovered font style. --- assets/scss/dark-mode.scss | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) (limited to 'assets') diff --git a/assets/scss/dark-mode.scss b/assets/scss/dark-mode.scss index 7293fd5..f57d2c7 100644 --- a/assets/scss/dark-mode.scss +++ b/assets/scss/dark-mode.scss @@ -120,22 +120,27 @@ body.night { &, > * { .post-item-wrapper { + * { + color: $dark-mode-text; + } .post-item-info-wrapper{ @media screen and (max-width: $single-column-max-width) { box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); background: $dark-mode-front-container-background; } } - @media screen and (max-width: $single-column-max-width) { - box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); - background: $dark-mode-front-container-background; - } - &:not(.post-item-wrapper-no-hover):hover { - * { - color: $deep-light-accent; - } + + @media screen and (max-width: $single-column-max-width) { + box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); + background: $dark-mode-front-container-background; + } + &:not(.post-item-wrapper-no-hover):hover { + background: rgba(255,255,255, 0.03); + * { + color: $deep-light-accent !important; } } + } } } @@ -225,7 +230,7 @@ body.night { color: $deep-light-accent; } - .material-icons { + .pagination * { color: $dark-mode-text; } -- cgit v1.2.3