From 92cc8f72112776265236545317f9758bd8a3189c Mon Sep 17 00:00:00 2001 From: Gabriele Date: Tue, 4 Nov 2014 22:00:00 +0100 Subject: [PATCH] Fix disappearing transferlist list when zooming in the browser When the page is zoomed in the browser, the transferlist doesn't fit in the page and is moved below the left column, disappearing completely. Allow elements to overlap the handle to prevent this from happening. The error message is moved in the status bar since it's wrongly placed because of the overlap. Closes #603. --- src/webui/www/private/index.html | 3 ++- src/webui/www/public/css/style.css | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/webui/www/private/index.html b/src/webui/www/private/index.html index 844fc22b6..5ab27a778 100644 --- a/src/webui/www/private/index.html +++ b/src/webui/www/private/index.html @@ -83,7 +83,7 @@ _(Options) -
+
+
diff --git a/src/webui/www/public/css/style.css b/src/webui/www/public/css/style.css index 828ea023a..e15bd5c56 100644 --- a/src/webui/www/public/css/style.css +++ b/src/webui/www/public/css/style.css @@ -369,4 +369,17 @@ ul.filterList li:hover a { .torrentTable thead tr { background-color: #eee; +} + +/* + * Workaround to prevent the transfer list from + * disappearing when zooming in the browser. + */ +#filtersColumn_handle { + margin-left: -1px; +} + +#error_div { + float: left; + font-size: 14px; } \ No newline at end of file