From 37e3a1898f5dab21c4e88f6d1fc2aafc8c0490aa Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 21 Jan 2020 09:45:28 +1100 Subject: [PATCH] fix session unlock with password screen with session colors --- password.html | 2 +- stylesheets/_session.scss | 25 ++++++++++++++++++++++++- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/password.html b/password.html index 782c94e98..05f5078b7 100644 --- a/password.html +++ b/password.html @@ -22,7 +22,7 @@

{{ title }}

- {{ buttonText }} + {{ buttonText }}
{{ #showReset }}
diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 0871a50dd..9ecd6c39d 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -274,7 +274,7 @@ $session_message-container-border-radius: 5px; background-color: $session-color-danger; } &.warning { - background-color: $session-color-warning-alt; + background-color: $session-color-warning; } } @@ -1175,3 +1175,26 @@ button.module-scroll-down { background-color: $session-shade-8; } } + + +.standalone { + .button { + background:$session-color-green ; + } + + #reset-button { + color: $session-color-green; + } + + .inputs { + input { + color: $color-dark-05; + background-color: $color-dark-70; + border-color: $color-dark-55; + + &:focus { + outline: none; + } + } + } +}