mirror of
https://github.com/Radarr/Radarr
synced 2025-12-24 09:13:45 +01:00
19 lines
324 B
CSS
19 lines
324 B
CSS
.input {
|
|
composes: input from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.readOnly {
|
|
background-color: #eee;
|
|
}
|
|
|
|
.hasError {
|
|
composes: hasError from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasWarning {
|
|
composes: hasWarning from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasButton {
|
|
composes: hasButton from '~Components/Form/Input.css';
|
|
}
|