mirror of
https://github.com/Readarr/Readarr
synced 2025-12-24 17:24:13 +01: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>
61 lines
883 B
CSS
61 lines
883 B
CSS
.option {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 5px 10px;
|
|
width: 100%;
|
|
cursor: default;
|
|
|
|
&:hover {
|
|
background-color: var(--inputHoverBackgroundColor);
|
|
}
|
|
}
|
|
|
|
.optionCheck {
|
|
composes: container from '~./CheckInput.css';
|
|
|
|
flex: 0 0 0;
|
|
}
|
|
|
|
.optionCheckInput {
|
|
composes: input from '~./CheckInput.css';
|
|
|
|
margin-top: 0;
|
|
}
|
|
|
|
.isSelected {
|
|
background-color: var(--inputSelectedBackgroundColor);
|
|
|
|
&:hover {
|
|
background-color: var(--inputSelectedBackgroundColor);
|
|
}
|
|
|
|
&.isMobile {
|
|
background-color: inherit;
|
|
|
|
.iconContainer {
|
|
color: var(--primaryColor);
|
|
}
|
|
}
|
|
}
|
|
|
|
.isDisabled {
|
|
background-color: #aaa;
|
|
}
|
|
|
|
.isHidden {
|
|
display: none;
|
|
}
|
|
|
|
.isMobile {
|
|
height: 50px;
|
|
border-bottom: 1px solid var(--borderColor);
|
|
|
|
&:last-child {
|
|
border: none;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: unset;
|
|
}
|
|
}
|