diff options
author | Marius <baumann.marius@gmail.com> | 2015-04-05 03:21:15 +0200 |
---|---|---|
committer | Marius <baumann.marius@gmail.com> | 2015-04-05 03:21:15 +0200 |
commit | 2cdb4d49e62b31cf314c57767a156e91f3607fdd (patch) | |
tree | fc261b0a57b43946801a5559c463669b02e36c66 | |
parent | Merge pull request #2 from m4xcube/stable (diff) | |
parent | text changed to withe and little font fixes (diff) | |
download | pyload-2cdb4d49e62b31cf314c57767a156e91f3607fdd.tar.xz |
Merge pull request #3 from mariusbaumann/pr/2
text changed to withe and little font fixes
-rw-r--r-- | module/web/templates/default/queue.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/web/templates/default/queue.html b/module/web/templates/default/queue.html index 28386354c..fbda48f7a 100644 --- a/module/web/templates/default/queue.html +++ b/module/web/templates/default/queue.html @@ -52,11 +52,11 @@ 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 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="right: 30px; position: absolute; z-index: 2;"> + <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> |