use variable for password input height
parent
5cb266838a
commit
443fb6e22d
|
@ -10,7 +10,7 @@
|
|||
@alertify-input-fg: @colortheme_modal-input-fg;
|
||||
|
||||
input:not(.form-control), textarea {
|
||||
background-color: @alertify-input-fg;
|
||||
// background-color: @alertify-input-fg;
|
||||
color: @cryptpad_text_col;
|
||||
border: 1px solid @alertify-input-bg;
|
||||
width: 100%;
|
||||
|
@ -23,6 +23,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
input:not(.form-control) {
|
||||
height: @variables_input-height;
|
||||
}
|
||||
|
||||
div.cp-alertify-type {
|
||||
display: flex;
|
||||
input {
|
||||
|
|
|
@ -117,6 +117,7 @@
|
|||
//border-radius: 0 0.25em 0.25em 0;
|
||||
//border: 1px solid #adadad;
|
||||
border-left: 0px;
|
||||
height: @variables_input-height;
|
||||
}
|
||||
}
|
||||
&>div {
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
// Elements size
|
||||
@variables_bar-height: 32px;
|
||||
@variables_input-height: 38px;
|
||||
|
||||
// Used in modal.less and alertify.less
|
||||
@variables_padding: 12px;
|
||||
|
|
|
@ -138,6 +138,7 @@
|
|||
padding: 5px;
|
||||
padding-left: 15px;
|
||||
&[type="number"] {
|
||||
height: @variables_input-height + 2px; // to avoid cropped numbers
|
||||
border-right: 1px solid #adadad;
|
||||
}
|
||||
&[type="checkbox"] {
|
||||
|
|
Loading…
Reference in New Issue