From d9ef65d745c06e5fb9fafa5dd1165e6eee7a8d03 Mon Sep 17 00:00:00 2001 From: Chris Ross Date: Fri, 29 Dec 2023 12:11:24 -0500 Subject: [PATCH] [WebUI] Fix tracker icon to fit within tracker column rows For me at least, Safari on Mac OS X, the tracker icon significantly overflows in the Tracker column of the torrent list. (It does show the correct size in the Trackers filter, though. Different CSS.) This change causes it to constrain down to the height of the column and display correctly. Closes: https://github.com/deluge-torrent/deluge/pull/440 --- deluge/ui/web/js/deluge-all/TorrentGrid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/web/js/deluge-all/TorrentGrid.js b/deluge/ui/web/js/deluge-all/TorrentGrid.js index 333d1335c..5db7e9fbc 100644 --- a/deluge/ui/web/js/deluge-all/TorrentGrid.js +++ b/deluge/ui/web/js/deluge-all/TorrentGrid.js @@ -61,7 +61,7 @@ return String.format( '
{0}
', + 'tracker/{0}) no-repeat; background-size: contain; padding-left: 20px;">{0}', Ext.util.Format.htmlEncode(value) ); }