Browse Source

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.
adaptive-webui-19844
Gabriele 10 years ago
parent
commit
92cc8f7211
  1. 3
      src/webui/www/private/index.html
  2. 13
      src/webui/www/public/css/style.css

3
src/webui/www/private/index.html

@ -83,7 +83,7 @@ @@ -83,7 +83,7 @@
<a id="preferencesButton" class="divider"><img class="mochaToolButton" title="_(Options)" src="theme/preferences-system" alt="_(Options)" width="24" height="24" onload="fixPNG(this)"/></a>
</div>
</div>
<div id="pageWrapper"><span id="error_div"></span>
<div id="pageWrapper">
</div>
</div>
<ul id="contextmenu">
@ -104,6 +104,7 @@ @@ -104,6 +104,7 @@
</ul>
<div id="desktopFooterWrapper">
<div id="desktopFooter">
<span id="error_div"></span>
<table style="position: absolute; right: 5px;">
<tr><td id="DlInfos" style="cursor:pointer;"></td><td style="width: 2px;margin:0;"><img src="images/skin/toolbox-divider.gif" alt="" style="height: 18px; padding-left: 10px; padding-right: 10px; margin-bottom: -2px;"/></td><td id="UpInfos" style="cursor:pointer;"></td></tr>
</table>

13
src/webui/www/public/css/style.css

@ -369,4 +369,17 @@ ul.filterList li:hover a { @@ -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;
}
Loading…
Cancel
Save