mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-09 09:18:24 +01:00
19 lines
355 B
CSS
19 lines
355 B
CSS
.input {
|
|
composes: input from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.readOnly {
|
|
background-color: var(--inputReadOnlyBackgroundColor);
|
|
}
|
|
|
|
.hasError {
|
|
composes: hasError from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasWarning {
|
|
composes: hasWarning from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasButton {
|
|
composes: hasButton from '~Components/Form/Input.css';
|
|
}
|