yunser-ui-vue
Version:
material design ui for vue2
48 lines (40 loc) • 799 B
text/less
.mu-text-field{
color: @textFieldTextColor;
&.focus-state {
color: @textFieldFocusTextColor;
&.error{
color: @textFieldErrorTextColor;
}
}
&.disabled {
color: @textFieldDisabledTextColor;
}
}
.mu-text-field-input {
color: @textFieldInputColor;
}
.mu-text-field-help {
.mu-text-field.error &{
color: @textFieldErrorTextColor;
}
}
.mu-text-field-line {
background-color: @textFieldLineColor;
&.disabled {
border-color: @textFieldDisabledLineColor;
}
}
.mu-text-field-focus-line{
background-color: @textFieldFocusLineColor;
&.error {
background-color: @textFieldErrorLineColor;
}
}
.mu-text-field-hint {
color: @textFieldHintColor;
}
.mu-text-field-label {
.mu-text-field.has-label &.float {
color: @textFieldHintColor
}
}