mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-20 16:44:37 -04:00
Fixes #5380 Fixes #5348 Fixes #5167 Fixes #5166 Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
54 lines
688 B
CSS
54 lines
688 B
CSS
.inputWrapper {
|
|
display: flex;
|
|
}
|
|
|
|
.inputFolder {
|
|
composes: input from '~Components/Form/Input.css';
|
|
|
|
max-width: 100px;
|
|
}
|
|
|
|
.inputUnitWrapper {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.inputUnit {
|
|
composes: inputUnit from '~Components/Form/FormInputGroup.css';
|
|
|
|
right: 40px;
|
|
font-family: $monoSpaceFontFamily;
|
|
}
|
|
|
|
.unit {
|
|
font-family: $monoSpaceFontFamily;
|
|
}
|
|
|
|
.details {
|
|
margin-top: 5px;
|
|
margin-left: 17px;
|
|
line-height: 20px;
|
|
|
|
> div {
|
|
display: flex;
|
|
|
|
label {
|
|
flex: 0 0 50px;
|
|
}
|
|
|
|
.value {
|
|
width: 50px;
|
|
text-align: right;
|
|
}
|
|
|
|
.unit {
|
|
width: 90px;
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|
|
|
|
.readOnly {
|
|
background-color: #eee;
|
|
}
|