mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-21 16:54:15 -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>
52 lines
690 B
CSS
52 lines
690 B
CSS
.inputGroupContainer {
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
}
|
|
|
|
.inputGroup {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.inputContainer {
|
|
position: relative;
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
}
|
|
|
|
.inputUnit {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 20px;
|
|
margin-top: 7px;
|
|
width: 75px;
|
|
color: #c6c6c6;
|
|
text-align: right;
|
|
pointer-events: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.inputUnitNumber {
|
|
composes: inputUnit;
|
|
|
|
right: 40px;
|
|
}
|
|
|
|
.pendingChangesContainer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
width: 30px;
|
|
}
|
|
|
|
.pendingChangesIcon {
|
|
color: var(--warningColor);
|
|
font-size: 20px;
|
|
line-height: 35px;
|
|
}
|
|
|
|
.helpLink {
|
|
margin-top: 5px;
|
|
line-height: 20px;
|
|
}
|