You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/frontend/src/Settings/Quality/Definition/QualityDefinition.css

94 lines
1.4 KiB

.qualityDefinition {
display: flex;
align-content: stretch;
margin: 5px 0;
padding-top: 5px;
height: 45px;
border-top: 1px solid $borderColor;
}
.quality,
.title {
flex: 0 1 250px;
padding-right: 20px;
line-height: 40px;
}
.sizeLimit {
flex: 0 1 500px;
padding-right: 30px;
}
.slider {
width: 100%;
height: 20px;
}
.bar {
top: 9px;
margin: 0 5px;
height: 3px;
background-color: $sliderAccentColor;
box-shadow: 0 0 0 #000;
&:nth-child(3n+1) {
background-color: #ddd;
}
}
.handle {
top: 1px;
z-index: 0 !important;
width: 18px;
height: 18px;
border: 3px solid $sliderAccentColor;
border-radius: 50%;
background-color: $white;
text-align: center;
cursor: pointer;
}
.sizes {
display: flex;
justify-content: space-between;
}
.megabytesPerMinute {
display: flex;
justify-content: space-between;
flex: 0 0 400px;
}
.sizeInput {
composes: input from '~Components/Form/TextInput.css';
display: inline-block;
margin-left: 5px;
padding: 6px;
width: 75px;
}
@media only screen and (max-width: $breakpointSmall) {
.qualityDefinition {
flex-wrap: wrap;
height: auto;
&:first-child {
border-top: none;
}
}
.qualityDefinition:first-child {
border-top: none;
}
.quality {
font-weight: bold;
line-height: inherit;
}
.sizeLimit {
margin-top: 10px;
}
}