mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-20 16:44:37 -04:00
New: Show missing root folder path in edit for Import List Closes #5908 (cherry picked from commit ae196af2ad368d49fde2358f0987ed7650c7f29c)
38 lines
482 B
CSS
38 lines
482 B
CSS
.optionText {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex: 1 0 0;
|
|
|
|
&.isMobile {
|
|
display: block;
|
|
|
|
.freeSpace {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.value {
|
|
display: flex;
|
|
max-width: 500px;
|
|
}
|
|
|
|
.movieFolder {
|
|
@add-mixin truncate;
|
|
|
|
color: $disabledColor;
|
|
}
|
|
|
|
.freeSpace {
|
|
margin-left: 15px;
|
|
color: $darkGray;
|
|
font-size: $smallFontSize;
|
|
}
|
|
|
|
.isMissing {
|
|
margin-left: 15px;
|
|
color: $dangerColor;
|
|
font-size: $smallFontSize;
|
|
}
|