[bugfix] Field: input text color (#1143)

This commit is contained in:
neverland 2018-12-24 20:43:25 +08:00 committed by GitHub
parent 3b130445ae
commit 9d03d94aa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View File

@ -20,13 +20,14 @@
display: block;
text-align: left;
min-height: 24px;
color: @text-color;
line-height: inherit;
box-sizing: border-box;
background-color: transparent;
&--disabled {
opacity: 1;
color: @gray-darker;
color: @gray-dark;
background-color: transparent;
}
@ -43,6 +44,10 @@
}
}
&__placeholder {
color: @gray-dark;
}
&__clear-root {
height: 24px;
}

View File

@ -25,7 +25,7 @@
auto-height="{{ autosize }}"
placeholder="{{ placeholder }}"
placeholder-style="{{ placeholderStyle }}"
placeholder-class="{{ error ? 'van-field__input--error' : '' }}"
placeholder-class="{{ error ? 'van-field__input--error' : 'van-field__placeholder' }}"
cursor-spacing="{{ cursorSpacing }}"
adjust-position="{{ adjustPosition }}"
show-confirm-bar="{{ showConfirmBar }}"
@ -44,7 +44,7 @@
maxlength="{{ maxlength }}"
placeholder="{{ placeholder }}"
placeholder-style="{{ placeholderStyle }}"
placeholder-class="{{ error ? 'van-field__input--error' : '' }}"
placeholder-class="{{ error ? 'van-field__input--error' : 'van-field__placeholder' }}"
confirm-type="{{ confirmType }}"
confirm-hold="{{ confirmHold }}"
cursor-spacing="{{ cursorSpacing }}"