tweaked input styles
This commit is contained in:
parent
78459d759c
commit
029633f3d3
|
@ -84,6 +84,7 @@ a {
|
||||||
}
|
}
|
||||||
|
|
||||||
.input {
|
.input {
|
||||||
|
flex: 2 0 auto;
|
||||||
border: 1px solid var(--primaryControlBGColor);
|
border: 1px solid var(--primaryControlBGColor);
|
||||||
border-radius: 6px 0 0 6px;
|
border-radius: 6px 0 0 6px;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
@ -102,6 +103,7 @@ a {
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputBtn {
|
.inputBtn {
|
||||||
|
flex: auto;
|
||||||
background: var(--primaryControlBGColor);
|
background: var(--primaryControlBGColor);
|
||||||
border-radius: 0 6px 6px 0;
|
border-radius: 0 6px 6px 0;
|
||||||
border: 1px solid var(--primaryControlBGColor);
|
border: 1px solid var(--primaryControlBGColor);
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
.passwordSection {
|
.passwordSection {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 40px;
|
padding: 40px 0;
|
||||||
|
width: 80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.passwordForm {
|
.passwordForm {
|
||||||
|
@ -10,14 +11,6 @@
|
||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input--password {
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inputBtn--password {
|
|
||||||
flex: 0 1 165px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.red {
|
.red {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@ module.exports = function(state, emit) {
|
||||||
${label}
|
${label}
|
||||||
<form class="passwordForm" onsubmit=${checkPassword} data-no-csrf>
|
<form class="passwordForm" onsubmit=${checkPassword} data-no-csrf>
|
||||||
<input id="password-input"
|
<input id="password-input"
|
||||||
class="input input--password input--noBtn"
|
class="input input--noBtn"
|
||||||
maxlength="64"
|
maxlength="64"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
placeholder="${state.translate('unlockInputPlaceholder')}"
|
placeholder="${state.translate('unlockInputPlaceholder')}"
|
||||||
|
@ -25,7 +25,7 @@ module.exports = function(state, emit) {
|
||||||
type="password" />
|
type="password" />
|
||||||
<input type="submit"
|
<input type="submit"
|
||||||
id="password-btn"
|
id="password-btn"
|
||||||
class="inputBtn inputBtn--password inputBtn--hidden"
|
class="inputBtn inputBtn--hidden"
|
||||||
value="${state.translate('unlockButtonLabel')}"/>
|
value="${state.translate('unlockButtonLabel')}"/>
|
||||||
</form>
|
</form>
|
||||||
</div>`;
|
</div>`;
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
.passwordInput {
|
.passwordInput {
|
||||||
align-self: left;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
|
@ -25,7 +24,7 @@
|
||||||
background-color: var(--successControlBGColor);
|
background-color: var(--successControlBGColor);
|
||||||
border: 1px solid var(--successControlBGColor);
|
border: 1px solid var(--successControlBGColor);
|
||||||
color: var(--successControlFGColor);
|
color: var(--successControlFGColor);
|
||||||
width: 10em;
|
flex-basis: 20%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputBtn--loading:hover {
|
.inputBtn--loading:hover {
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
.setPasswordSection {
|
.setPasswordSection {
|
||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
align-self: left;
|
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue