Radarr/frontend/src/Components/Form/TextInput.css

20 lines
355 B
CSS
Raw Normal View History

2018-11-23 07:04:42 +00:00
.input {
composes: input from '~Components/Form/Input.css';
2018-11-23 07:04:42 +00:00
}
.readOnly {
background-color: var(--inputReadOnlyBackgroundColor);
2018-11-23 07:04:42 +00:00
}
.hasError {
composes: hasError from '~Components/Form/Input.css';
2018-11-23 07:04:42 +00:00
}
.hasWarning {
composes: hasWarning from '~Components/Form/Input.css';
2018-11-23 07:04:42 +00:00
}
.hasButton {
composes: hasButton from '~Components/Form/Input.css';
2018-11-23 07:04:42 +00:00
}