Resolve conflict

This commit is contained in:
sb745 2025-12-22 06:03:58 +02:00 committed by GitHub
parent 9106977fad
commit 9630016e4e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -577,3 +577,48 @@ mark, .mark {
background-color: #fff6c9; background-color: #fff6c9;
padding: .2em; padding: .2em;
} }
/* Hide and resize some things on tiny screens to improve usability. */
@media (max-width: 767px) {
.hdr-size, .hdr-date, .hdr-downloads,
table.torrent-list > tbody > tr > td:nth-child(4),
table.torrent-list > tbody > tr > td:nth-child(5),
table.torrent-list > tbody > tr > td:nth-child(8) {
display: none;
}
table.torrent-list > tbody > tr > td:nth-child(7) {
border-right: 0;
}
.table thead > tr > th {
border-right: none;
}
table.torrent-list > tbody > tr > td:nth-child(3) > a {
display: block;
}
.hdr-link {
width: 32px !important;
}
.hdr-seeders, .hdr-leechers {
width: 48px !important;
}
.hdr-category {
width: 20px !important;
overflow: hidden;
text-indent: -9999px;
}
table.torrent-list > tbody > tr > td:first-child {
overflow: hidden;
}
table.torrent-list > tbody > tr > td:first-child img {
width: 50px;
height: auto;
}
}