mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 05:44:50 +00:00
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:
parent
e70c61e24e
commit
f3454ba7ee
2 changed files with 7 additions and 0 deletions
|
@ -8,6 +8,7 @@
|
|||
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
||||
|
||||
width: 80px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.customFormatScore {
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue