mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-10 20:15:51 -04:00
Fixed: Preserve setgid when applying unix permissions Signed-off-by: Robin Dadswell <robin@dadswell.email>
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;
|
|
}
|