Files
Readarr/frontend/src/Settings/Quality/Definition/QualityDefinitions.css
T
Tynan CR 1368dd6a53 Fix: Quality range definitions in kbps (#157)
* 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
2017-12-27 21:41:11 -05:00

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;
}
}
}