style: prevents wrapping of indexer column

fixes #9551: prevents wrapping in the history panel and in interactive search if the modal is greater than 1600px, the same value as .extraExtraLarge breakpoint defined in Modal.css
This commit is contained in:
Rohan Chandi 2024-03-02 11:44:15 +01:00
parent e70c61e24e
commit f3454ba7ee
No known key found for this signature in database
2 changed files with 7 additions and 0 deletions

View File

@ -8,6 +8,7 @@
composes: cell from '~Components/Table/Cells/TableRowCell.css';
width: 80px;
white-space: nowrap;
}
.customFormatScore {

View File

@ -17,6 +17,12 @@
width: 85px;
}
@media only screen and (min-width: calc($breakpointExtraLarge + 150px)) {
.indexer {
white-space: nowrap;
}
}
.quality,
.languages {
composes: cell from '~Components/Table/Cells/TableRowCell.css';