mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
1368dd6a53
* Quality range uses kbits per second. Quality ranges updated for each format * Changed vorbis q10 weight * Fixed element name * Added migration to keep existing MB/min quality constraints valid * Fixed migration SQL * Slider step now 1 * Fix: using kbps for min size as well * Added tooltip for quality-size * Updated AcceptableSizeSpecification test * Small magic number fix
42 lines
523 B
CSS
42 lines
523 B
CSS
.header {
|
|
display: flex;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.quality,
|
|
.title {
|
|
flex: 0 1 250px;
|
|
}
|
|
|
|
.sizeLimit {
|
|
flex: 0 1 500px;
|
|
}
|
|
|
|
.kilobitsPerSecond {
|
|
flex: 0 0 250px;
|
|
}
|
|
|
|
.sizeLimitHelpTextContainer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-top: 20px;
|
|
max-width: 1000px;
|
|
}
|
|
|
|
.sizeLimitHelpText {
|
|
max-width: 500px;
|
|
color: $helpTextColor;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.header {
|
|
display: none;
|
|
}
|
|
|
|
.definitions {
|
|
&:first-child {
|
|
border-top: none;
|
|
}
|
|
}
|
|
}
|