Skip to content

Commit

Permalink
fix session unlock with password screen with session colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilb committed Jan 20, 2020
1 parent c69219e commit 37e3a18
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
2 changes: 1 addition & 1 deletion password.html
Original file line number Diff line number Diff line change
Expand Up @@ -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'>
Expand Down
25 changes: 24 additions & 1 deletion stylesheets/_session.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down Expand Up @@ -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;
}
}
}
}

0 comments on commit 37e3a18

Please sign in to comment.