diff options
author | Armin <Armin@Armin-PC.diedering.lan> | 2015-04-08 21:49:45 +0200 |
---|---|---|
committer | Armin <Armin@Armin-PC.diedering.lan> | 2015-04-08 21:49:45 +0200 |
commit | c19e6e249c839d127d2cd6ae70ec5be909b2184e (patch) | |
tree | 97de200f5430c80bb2f22ba6c92e450e50acf369 /pyload/webui/themes/Next/tml/queue.html | |
parent | fix setup (diff) | |
parent | Merge pull request #1 from vuolter/0.4.10 (diff) | |
download | pyload-c19e6e249c839d127d2cd6ae70ec5be909b2184e.tar.xz |
Merge remote-tracking branch 'origin/0.4.10' into 0.4.10
Diffstat (limited to 'pyload/webui/themes/Next/tml/queue.html')
-rw-r--r-- | pyload/webui/themes/Next/tml/queue.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pyload/webui/themes/Next/tml/queue.html b/pyload/webui/themes/Next/tml/queue.html index 6f50d740c..265cdfbe1 100644 --- a/pyload/webui/themes/Next/tml/queue.html +++ b/pyload/webui/themes/Next/tml/queue.html @@ -52,16 +52,16 @@ document.addEvent("domready", function(){ </div> {% 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 id="progress" class="progress" style="float:left; width: 50%; margin-top: -5px; color:#fff; font-weight: 700; font-size:12px;"> + <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; color:#fff;"> + {{ 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"> |