// 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 Autocomplete */
// Styles applied to the root element.
.ZuAutocomplete-root {
}
// Styles applied to the root element if fullWidth={true}.
.ZuAutocomplete-fullWidth {
}
// State class applied to the root element if the listbox is displayed.
.ZuAutocomplete-expanded {
}
// State class applied to the root element if focused.
.ZuAutocomplete-focused {
}
// Styles applied to the option elements if they are keyboard focused.
.ZuAutocomplete-focusVisible {
}
// Styles applied to the tag elements, e.g. the chips.
.ZuAutocomplete-tag {
}
// Styles applied to the tag elements, e.g. the chips if size="small".
.ZuAutocomplete-tagSizeSmall {
}
// Styles applied to the tag elements, e.g. the chips if size="medium".
.ZuAutocomplete-tagSizeMedium {
}
// Styles applied when the popup icon is rendered.
.ZuAutocomplete-hasPopupIcon {
}
// Styles applied when the popup icon is rendered.
.ZuAutocomplete-hasClearIcon {
}
// Styles applied to the Input element.
.ZuAutocomplete-inputRoot {
}
// Styles applied to the input element.
.ZuAutocomplete-input {
}
// Styles applied to the input element if the input is focused.
.ZuAutocomplete-inputFocused {
}
// Styles applied to the endAdornment element.
.ZuAutocomplete-endAdornment {
}
// Styles applied to the clear indicator.
.ZuAutocomplete-clearIndicator {
}
// Styles applied to the popup indicator.
.ZuAutocomplete-popupIndicator {
}
// Styles applied to the popup indicator if the popup is open.
.ZuAutocomplete-popupIndicatorOpen {
}
// Styles applied to the popper element.
.ZuAutocomplete-popper {
}
// Styles applied to the popper element if disablePortal={true}.
.ZuAutocomplete-popperDisablePortal {
}
// Styles applied to the Paper component.
.ZuAutocomplete-paper {
}
// Styles applied to the listbox component.
.ZuAutocomplete-listbox {
}
// Styles applied to the loading wrapper.
.ZuAutocomplete-loading {
}
// Styles applied to the no option wrapper.
.ZuAutocomplete-noOptions {
}
// Styles applied to the option elements.
.ZuAutocomplete-option {
}
// Styles applied to the group's label elements.
.ZuAutocomplete-groupLabel {
}
// Styles applied to the group's ul elements.
.ZuAutocomplete-groupUl {
}