mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-26 01:11:33 +01:00
Added custom format specs for audio (sample rate, bit depth, bitrate, codec, channels) with validation and UI fields. MediaInfo is now passed to custom format evaluation. ManualImportResource and UI updated to expose and display custom format matches and scores. Improved API validation and upgrade logic to use custom format scores. SizeSpecification validator now allows Max = Min.
40 lines
679 B
CSS
40 lines
679 B
CSS
.path {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
word-break: break-all;
|
|
}
|
|
|
|
.quality {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
.customFormatScore {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
.label {
|
|
composes: label from '~Components/Label.css';
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
.reprocessing {
|
|
composes: loading from '~Components/Loading/LoadingIndicator.css';
|
|
|
|
margin-top: 0;
|
|
text-align: start;
|
|
}
|
|
|
|
.additionalFile {
|
|
composes: row from '~Components/Table/TableRow.css';
|
|
|
|
color: var(--disabledColor);
|
|
}
|
|
|
|
.customFormatTooltip {
|
|
max-width: 250px;
|
|
}
|