You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/frontend/src/Components/Form/AutoSuggestInput.css

51 lines
874 B

7 years ago
.input {
composes: input from "~Components/Form/Input.css";
7 years ago
}
.hasError {
composes: hasError from "~Components/Form/Input.css";
7 years ago
}
.hasWarning {
composes: hasWarning from "~Components/Form/Input.css";
7 years ago
}
.inputContainer {
flex-grow: 1;
}
.suggestionsContainer {
7 years ago
@add-mixin scrollbar;
@add-mixin scrollbarTrack;
@add-mixin scrollbarThumb;
}
.suggestionsContainerOpen {
z-index: $popperZIndex;
.suggestionsContainer {
7 years ago
overflow-y: auto;
max-height: 200px;
width: 100%;
border: 1px solid $inputBorderColor;
border-radius: 4px;
background-color: $white;
box-shadow: inset 0 1px 1px $inputBoxShadowColor;
}
}
.suggestionsList {
7 years ago
margin: 5px 0;
padding-left: 0;
max-height: 200px;
7 years ago
list-style-type: none;
}
.suggestion {
7 years ago
padding: 0 16px;
}
.suggestionHighlighted {
7 years ago
background-color: $menuItemHoverBackgroundColor;
}