mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
6e38df366f
* 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>
55 lines
967 B
CSS
55 lines
967 B
CSS
.searchContainer {
|
|
display: flex;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.searchIconContainer {
|
|
width: 58px;
|
|
height: 46px;
|
|
border: 1px solid var(--inputBorderColor);
|
|
border-right: none;
|
|
border-radius: 4px;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
background-color: var(--searchIconContainerBackgroundColor);
|
|
text-align: center;
|
|
line-height: 46px;
|
|
}
|
|
|
|
.searchInput {
|
|
composes: input from '~Components/Form/TextInput.css';
|
|
|
|
height: 46px;
|
|
border-radius: 0;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.clearLookupButton {
|
|
border: 1px solid var(--inputBorderColor);
|
|
border-left: none;
|
|
border-top-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
}
|
|
|
|
.message {
|
|
margin-top: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
.helpText {
|
|
margin-bottom: 10px;
|
|
font-weight: 300;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.noResults {
|
|
margin-bottom: 10px;
|
|
font-weight: 300;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.searchResults {
|
|
margin-top: 30px;
|
|
}
|