mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-02 05:38:06 -06:00
WebUI: Make column width less variable in transferlist
Each column has a fixed width that allows to read its content. The column for the name of the torrents has a variable width with an upper and a lower constraint. If the width of the page is not sufficient to fit the table, a scrollbar will appear.
This commit is contained in:
@@ -64,3 +64,11 @@
|
||||
#transferList img.statusIcon {
|
||||
margin-bottom: -4px;
|
||||
}
|
||||
|
||||
#transferList th,
|
||||
#transferList td {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
max-width: 300px;
|
||||
}
|
||||
Reference in New Issue
Block a user