Skip to content

Commit

Permalink
style: prevents wrapping of indexer column
Browse files Browse the repository at this point in the history
fixes Radarr#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
  • Loading branch information
tempcvrohch committed Mar 2, 2024
1 parent e70c61e commit f3454ba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/src/Activity/History/HistoryRow.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
composes: cell from '~Components/Table/Cells/TableRowCell.css';

width: 80px;
white-space: nowrap;
}

.customFormatScore {
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/InteractiveSearch/InteractiveSearchRow.css
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit f3454ba

Please sign in to comment.