Fix torrent index on narrow viewports. (#484)

people should get bigger monitors
This commit is contained in:
Alex Ingram 2018-04-23 17:47:18 -05:00 committed by Arylide
parent 7a494f26de
commit 8498ff8e62
1 changed files with 24 additions and 0 deletions

View File

@ -544,6 +544,26 @@ body.dark .panel-deleted > .panel-heading {
.search-container > .search-bar {
margin-top: 15px;
}
.torrent-list .hdr-date,
.torrent-list .hdr-downloads,
.torrent-list td: nth-of-type(5),
.torrent-list td:nth-of-type(8) {
display: none;
}
.table-responsive > .table > tbody > tr > td:nth-of-type(2) {
white-space: unset;
word-break: break-all;
}
.container {
width: unset;
}
.container > .row {
margin: unset;
}
}
@media (min-width: 992px) {
@ -574,6 +594,10 @@ td.report-action-column {
.search-container {
width: 400px;
}
.table-responsive > .table > tbody > tr > td:nth-of-type(2) {
white-space: unset;
}
}