mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-14 11:32:36 +01:00
19 lines
309 B
CSS
19 lines
309 B
CSS
.input {
|
|
composes: input from '~Components/Form/Input.css';
|
|
|
|
flex-grow: 1;
|
|
min-height: 200px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.readOnly {
|
|
background-color: #eee;
|
|
}
|
|
|
|
.hasError {
|
|
composes: hasError from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasWarning {
|
|
composes: hasWarning from '~Components/Form/Input.css';
|
|
}
|