mirror of
https://github.com/Radarr/Radarr
synced 2026-01-03 22:25:00 +01:00
* History Added * History Cleanup * History Mark Failed Fix * History Lint Fix * Search Tab Initial * Interactive Search Cleanup * Files Tab + Small Backend change to MovieFile api * Reverse Movie History Items * Grabbed files are not grabbable again. * Partial movie title outline + Search not updating fix * Lint Fix + InteractiveSearch refactor * Rename movieLanguage.js to MovieLanguage.js * Fixes for qstick's comments * Rename language selector to allow for const languages * Qstick comment changes. * Activity Tabs - Language Column fixed * Movie Details - MoveStatusLabel fixed * Spaces + Lower Case added * fixed DownloadAllowed * Added padding to history and file tables * Fix class => className * Updated search to not refresh unless switching movie * lint fix * File Tab Converted to Inline Editting * FIles tab fix + Alt Titles tab implemented * lint fix * Cleanup via qstick request
28 lines
494 B
CSS
28 lines
494 B
CSS
.title {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
word-break: break-all;
|
|
}
|
|
|
|
.quality,
|
|
.language {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
}
|
|
|
|
.language {
|
|
width: 100px;
|
|
}
|
|
|
|
.rejected,
|
|
.download {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
width: 50px;
|
|
}
|
|
|
|
.age,
|
|
.size {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
white-space: nowrap;
|
|
}
|