diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-15 23:42:41 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-15 23:42:41 +0200 |
commit | 05579880a4e4e76ada35cf2ff303a71377dfb41b (patch) | |
tree | d2190ed5dabe087ea2814daea6265aacb4a55d30 /module/web/templates/default/collector.html | |
parent | sorting fix (diff) | |
download | pyload-05579880a4e4e76ada35cf2ff303a71377dfb41b.tar.xz |
package ui improvements
Diffstat (limited to 'module/web/templates/default/collector.html')
-rw-r--r-- | module/web/templates/default/collector.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/web/templates/default/collector.html b/module/web/templates/default/collector.html index e207ba99a..1a7a4aa0c 100644 --- a/module/web/templates/default/collector.html +++ b/module/web/templates/default/collector.html @@ -37,7 +37,9 @@ document.addEvent("domready", function(){ </li>{% endblock %}
{% block content %}
-<div id="load-indicator" style="opacity: 0; float: right">
+<div id="load-success" style="opacity: 0; float: right; color: white; background-color: #90ee90; padding: 4px; -moz-border-radius: 5px; border-radius: 5px; font-weight: bold; margin-left: -100%; margin-top: -10px;">{% trans "success" %}</div>
+<div id="load-failure" style="opacity: 0; float: right; color: white; background-color: #f08080; padding: 4px; -moz-border-radius: 5px; border-radius: 5px; font-weight: bold; margin-left: -100%; margin-top: -10px;">{% trans "failure" %}</div>
+<div id="load-indicator" style="opacity: 0; float: right; margin-top: -10px;">
<img src="{{ MEDIA_URL }}img/ajax-loader.gif" alt="" style="padding-right: 5px"/>
{% trans "loading" %}
</div>
|