0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 17:36:49 +01:00
wagtail/client/scss/components/forms/_input-base.scss
Thibaud Colas eac5e0bc2c Finish re-implementing form styles based on design feedback & code review
Co-authored-by: LB Johnston <mail@lb.ee>
2022-08-05 10:36:52 +02:00

37 lines
1015 B
SCSS

/**
* Field styles reusable across **all** fields, including:
* Text input, textarea, checkbox, radio, select, etc.
*/
@mixin input-base() {
appearance: none;
border-radius: theme('borderRadius.DEFAULT');
color: $color-input-text;
background-color: $color-input-bg;
border: 1px solid $color-input-border;
&:hover {
border-color: $color-input-hover-border;
}
&[disabled],
&[disabled]:hover {
color: $color-input-disabled-text;
background-color: $color-input-disabled-bg;
border-color: $color-input-disabled-border;
cursor: not-allowed;
}
// Only show the error state for the specific field in error.
.w-field--error > .w-field__input > &,
// Allow for one wrapper level within StreamField.
.w-field--error > .w-field__input > * > &,
// Ideally, individual widgets should show they are in error state with aria-invalid.
&[aria-invalid='true'] {
border-color: $color-input-error-border;
}
&::placeholder {
color: $color-input-disabled-text;
}
}