[bugfix] Field: text color (#2323)

This commit is contained in:
neverland 2018-12-18 22:54:40 +08:00 committed by GitHub
parent 8bfcb9f3a6
commit fdffccfc7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -24,6 +24,7 @@
&__label {
color: @gray-dark;
font-size: 12px;
margin-top: 3px;
line-height: 18px;
}

View File

@ -17,12 +17,17 @@
width: 100%;
resize: none;
display: block;
color: @text-color;
box-sizing: border-box;
background-color: transparent;
&::placeholder {
color: @gray-dark;
}
&:disabled {
opacity: 1;
color: @gray-darker;
color: @gray-dark;
background-color: transparent;
}