diff options
author | m4xcube <m4xcube@users.noreply.github.com> | 2015-04-04 23:26:32 +0200 |
---|---|---|
committer | m4xcube <m4xcube@users.noreply.github.com> | 2015-04-04 23:26:32 +0200 |
commit | 0088e6da59ca374f4d1eab2b70d6d3dba46367f6 (patch) | |
tree | 69c192d3e75e374319f9391db96ab5e6acaeed44 | |
parent | Better readability of HTML (diff) | |
download | pyload-0088e6da59ca374f4d1eab2b70d6d3dba46367f6.tar.xz |
Allways show Package Size
-rw-r--r-- | module/web/templates/default/queue.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/module/web/templates/default/queue.html b/module/web/templates/default/queue.html index 6d71fb6e9..9aa864381 100644 --- a/module/web/templates/default/queue.html +++ b/module/web/templates/default/queue.html @@ -53,19 +53,17 @@ document.addEvent("domready", function(){ {% set progress = (package.linksdone * 100) / package.linkstotal %} <div id="progress" class="progress" style="float:left; width: 50%; margin-top: -5px;"> - <div class="progress-bar" role="progressbar" style="width: {{ progress }}%; height: 100%;"> - <label> - {{ package.linksdone }} / {{ package.linkstotal }}</label> + <div class="progress-bar" role="progressbar" style="width: {{ progress }}%; height: 100%; position: relative; z-index: 1;"> + <label>{{ package.linksdone }} / {{ package.linkstotal }}</label> </div> - <label style="padding-right: 5px ;float: right;"> - {{ package.sizedone|formatsize }} / {{ package.sizetotal|formatsize }}</label> + <label style="right: 30px; position: absolute; z-index: 2;"> + {{ package.sizedone|formatsize }} / {{ package.sizetotal|formatsize }}</label> </div> <div style="clear: both; margin-bottom: -10px"></div> <div id="children_{{package.pid}}" style="display: none; margin-bottom: 15px;" class="children"> - <span class="child_secrow" style="margin-bottom: 30px; margin-top: 5px;">{{_("Folder:")}} <span class="folder">{{package.folder}}</span> | {{_("Password:")}} <span class="password">{{package.password}}</span></span> - <ul id="sort_children_{{package.pid}}" style="list-style: none; padding-left: 0"> - </ul> + <span class="child_secrow" style="margin-bottom: 30px; margin-top: 5px;">{{_("Folder:")}} <span class="folder">{{package.folder}}</span> | {{_("Password:")}} <span class="password">{{package.password}}</span></span> + <ul id="sort_children_{{package.pid}}" style="list-style: none; padding-left: 0"></ul> </div> </div> </li> |