fix session unlock with password screen with session colors

This commit is contained in:
Audric Ackermann 2020-01-21 09:45:28 +11:00
parent c69219ebe4
commit 37e3a1898f
2 changed files with 25 additions and 2 deletions

View File

@ -22,7 +22,7 @@
<h2>{{ title }}</h2>
<div class='inputs'>
<input class='form-control' type='password' id='passPhrase' placeholder='Password' autocomplete='off' spellcheck='false' />
<a class='button' id='unlock-button'>{{ buttonText }}</a>
<a class='button session-button brand green' id='unlock-button'>{{ buttonText }}</a>
<div class='error'></div>
{{ #showReset }}
<div class='reset'>

View File

@ -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;
}
}
}
}