mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
fix session unlock with password screen with session colors
This commit is contained in:
parent
c69219ebe4
commit
37e3a1898f
2 changed files with 25 additions and 2 deletions
|
@ -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'>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue