16 lines
386 B
SCSS

// Form control
// *******************************************************************************
// form input placeholder animation
.form-control {
&::placeholder,
&:focus::placeholder {
transition: $input-placeholder-transition;
}
// border color on hover state
&:hover {
&:not([disabled]):not([focus]) {
border-color: $input-border-hover-color;
}
}
}