mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-24 17:24:30 -04:00
* New: Native Theme Engine Co-Authored-By: Zak Saunders <thezak48@users.noreply.github.com> (cherry picked from commit 2291f3e00eb2ff9268a0b2f49da8dde82ee13c04) * Update CSS for themes * Fixup CSS values * Fixup remove duped Color-Impaired setting * Fixup Link Colors Co-Authored-By: Qstick <qstick@gmail.com>
51 lines
913 B
CSS
51 lines
913 B
CSS
.input {
|
|
composes: input from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasError {
|
|
composes: hasError from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasWarning {
|
|
composes: hasWarning from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.inputContainer {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.suggestionsContainer {
|
|
@add-mixin scrollbar;
|
|
@add-mixin scrollbarTrack;
|
|
@add-mixin scrollbarThumb;
|
|
}
|
|
|
|
.suggestionsContainerOpen {
|
|
z-index: $popperZIndex;
|
|
|
|
.suggestionsContainer {
|
|
overflow-y: auto;
|
|
max-height: 200px;
|
|
width: 100%;
|
|
border: 1px solid var(--inputBorderColor);
|
|
border-radius: 4px;
|
|
background-color: var(--inputBackgroundColor);
|
|
box-shadow: inset 0 1px 1px var(--inputBoxShadowColor);
|
|
}
|
|
}
|
|
|
|
.suggestionsList {
|
|
margin: 5px 0;
|
|
padding-left: 0;
|
|
max-height: 200px;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.suggestion {
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.suggestionHighlighted {
|
|
background-color: var(--menuItemHoverBackgroundColor);
|
|
}
|