Lidarr/frontend/src/InteractiveImport/Interactive/InteractiveImportRow.css
Ahmed Al-Taiar 4dee096c83 Add audio custom format specs and show scores in import UI
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.
2026-01-17 12:47:13 -05:00

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