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

20 lines
355 B
CSS
Raw Normal View History

.input {
composes: input from '~Components/Form/Input.css';
2017-09-04 02:20:56 +00:00
}
.readOnly {
background-color: var(--inputReadOnlyBackgroundColor);
2017-09-04 02:20:56 +00:00
}
.hasError {
composes: hasError from '~Components/Form/Input.css';
2017-09-04 02:20:56 +00:00
}
.hasWarning {
composes: hasWarning from '~Components/Form/Input.css';
2017-09-04 02:20:56 +00:00
}
.hasButton {
composes: hasButton from '~Components/Form/Input.css';
2017-09-04 02:20:56 +00:00
}