diff options
author | Wugy <wugy@mally-soft.com> | 2010-01-18 22:37:21 +0100 |
---|---|---|
committer | Wugy <wugy@mally-soft.com> | 2010-01-18 22:37:21 +0100 |
commit | 5131657cc5ba16df1a39b36c2d0a316cc801e737 (patch) | |
tree | 46e372e0bb0c4225d820006590f77243b12bbb98 /module | |
parent | Webinterface - Queue style update (diff) | |
download | pyload-5131657cc5ba16df1a39b36c2d0a316cc801e737.tar.xz |
webinterface - queue style update
Diffstat (limited to 'module')
-rw-r--r-- | module/web/media/default/css/default.css | 5 | ||||
-rw-r--r-- | module/web/media/default/img/delete.png | bin | 0 -> 715 bytes | |||
-rw-r--r-- | module/web/templates/default/queue.html | 9 |
3 files changed, 11 insertions, 3 deletions
diff --git a/module/web/media/default/css/default.css b/module/web/media/default/css/default.css index 392d828f1..d7756e314 100644 --- a/module/web/media/default/css/default.css +++ b/module/web/media/default/css/default.css @@ -1478,7 +1478,10 @@ div.codearea pre span.Preprc { margin-left: 20px;
}
.child_status {
- width: 20px;
+ margin-right: 10px;
+}
+.child_secrow {
+ font-size: 10px;
}
.header, .header th {
diff --git a/module/web/media/default/img/delete.png b/module/web/media/default/img/delete.png Binary files differnew file mode 100644 index 000000000..08f249365 --- /dev/null +++ b/module/web/media/default/img/delete.png diff --git a/module/web/templates/default/queue.html b/module/web/templates/default/queue.html index 299452bc1..ff1f35052 100644 --- a/module/web/templates/default/queue.html +++ b/module/web/templates/default/queue.html @@ -11,10 +11,15 @@ {% block content %}
{% for package in content %}
-<div class="package"> <div class="packagename" onclick="javascript: PackegeShower();">{{ package.package_name }}</div>
+<div class="package"><div class="packagename" onclick="javascript: PackegeShower();">{{ package.package_name }} <a href=""><img width="10px" height="10px" src="{{ MEDIA_URL }}img/delete.png" /></a></div>
<div class="children">
{% for child in package.children %}
- <div class="child"><span class="child_status"> {{ child.status }}</span>{{ child.filename }}</div>
+ <div class="child"><span class="child_status">hierkommteinicondasaufdenstatusabgestimmtist</span>{{ child.filename }}<br />
+ <div class="child_secrow"><span class="child_status">Downloaded</span> <span class="child_status">100 MB</span> <a href=""><img width="10px" height="10px" src="{{ MEDIA_URL }}img/delete.png" /></a></div></div>
+ <div class="child"><span class="child_status">hierkommteinicondasaufdenstatusabgestimmtist</span>{{ child.filename }}<br />
+ <div class="child_secrow"><span class="child_status">Downloaded</span> <span class="child_status">100 MB</span> <a href=""><img width="10px" height="10px" src="{{ MEDIA_URL }}img/delete.png" /></a></div></div>
+ <div class="child"><span class="child_status">hierkommteinicondasaufdenstatusabgestimmtist</span>{{ child.filename }}<br />
+ <div class="child_secrow"><span class="child_status">Downloaded</span> <span class="child_status">100 MB</span> <a href=""><img width="10px" height="10px" src="{{ MEDIA_URL }}img/delete.png" /></a></div></div>
{% endfor %}
</div>
</div>
|