// Copyright (c) 2024 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Lesser General Public License
// that can be found in the LICENSE file.
/* Styles for Input */
// Styles applied to the root element.
.ZuInput-root {
}
// Styles applied to the root element if the component is a descendant of FormControl.
.ZuInput-formControl {
}
// Styles applied to the root element if the component is focused.
.ZuInput-focused {
}
// Styles applied to the root element if disabled={true}.
.ZuInput-disabled {
}
// Styles applied to the root element if color secondary.
.ZuInput-colorSecondary {
}
// Styles applied to the root element unless disableUnderline={true}.
.ZuInput-underline {
}
// State class applied to the root element if error={true}.
.ZuInput-error {
}
// Styles applied to the input element if size="small".
.ZuInput-sizeSmall {
}
// Styles applied to the root element if multiline={true}.
.ZuInput-multiline {
}
// Styles applied to the root element if fullWidth={true}.
.ZuInput-fullWidth {
}
// Styles applied to the input element.
.ZuInput-input {
}
// Styles applied to the input element if size="small".
.ZuInput-inputSizeSmall {
}
// Styles applied to the input element if multiline={true}.
.ZuInput-inputMultiline {
}
// Styles applied to the input element if startAdornment is provided.
.ZuInput-inputAdornedStart {
}
// Styles applied to the input element if endAdornment is provided.
.ZuInput-inputAdornedEnd {
}
// Styles applied to the input element if type="search".
.ZuInput-inputTypeSearch {
}