diff options
author | godofdream <soilfiction@gmail.com> | 2012-08-12 15:32:31 +0200 |
---|---|---|
committer | godofdream <soilfiction@gmail.com> | 2012-08-12 15:32:31 +0200 |
commit | 5a67ce182d27d51e3e864f41da893b11646eaa56 (patch) | |
tree | bbb2ae4df48cd39ad9fd76c924614cb88d65ae9c /module/web/static | |
parent | added center to header + various resizing (diff) | |
parent | added speed & downloads label and some icons (diff) | |
download | pyload-5a67ce182d27d51e3e864f41da893b11646eaa56.tar.xz |
Merge webdesigns
Diffstat (limited to 'module/web/static')
-rw-r--r-- | module/web/static/css/default/style.css | 41 | ||||
-rw-r--r-- | module/web/static/img/default/downloading-icon-green.png | bin | 0 -> 903 bytes | |||
-rw-r--r-- | module/web/static/img/default/downloading-icon-red.png | bin | 0 -> 896 bytes | |||
-rw-r--r-- | module/web/static/img/default/queue-icon-white.png | bin | 0 -> 647 bytes | |||
-rw-r--r-- | module/web/static/img/default/reconnecting-icon-green.png | bin | 0 -> 851 bytes | |||
-rw-r--r-- | module/web/static/img/default/reconnecting-icon-red.png | bin | 0 -> 842 bytes | |||
-rw-r--r-- | module/web/static/img/default/speed-icon-white.png | bin | 0 -> 904 bytes |
7 files changed, 41 insertions, 0 deletions
diff --git a/module/web/static/css/default/style.css b/module/web/static/css/default/style.css index 232733b95..0e7c5d98d 100644 --- a/module/web/static/css/default/style.css +++ b/module/web/static/css/default/style.css @@ -209,4 +209,45 @@ footer h2 { line-height: 16px;
margin: 0;
padding-bottom: 6px;
+}
+
+.header_block input {
+ width: 26px;
+ height: 26px;
+}
+#speedmeter, #downloads{
+ height: 26px;
+ margin: 0 2px 4px 2px;
+}
+.header-icon, #check_reconnecting, #check_downloading {
+ padding: 0;
+ margin: 0 3px 0 0;
+ float: left;
+ width: 26px;
+ height: 26px;
+}
+.header_text {
+ vertical-align:middle;
+ color: #FFFFFF;
+}
+#downloads_icon {
+ background: url("../../img/default/queue-icon-white.png");
+}
+#speedmeter_icon{
+ background: url("../../img/default/speed-icon-white.png");
+}
+
+
+.pyload-icon-reconnecting-activated {
+ background: url("../../img/default/reconnecting-icon-green.png");
+}
+.pyload-icon-reconnecting-deactivated {
+ background: url("../../img/default/reconnecting-icon-red.png");
+}
+
+.pyload-icon-downloading-activated {
+ background: url("../../img/default/downloading-icon-green.png");
+}
+.pyload-icon-downloading-deactivated {
+ background: url("../../img/default/downloading-icon-red.png");
}
\ No newline at end of file diff --git a/module/web/static/img/default/downloading-icon-green.png b/module/web/static/img/default/downloading-icon-green.png Binary files differnew file mode 100644 index 000000000..84e47dc3b --- /dev/null +++ b/module/web/static/img/default/downloading-icon-green.png diff --git a/module/web/static/img/default/downloading-icon-red.png b/module/web/static/img/default/downloading-icon-red.png Binary files differnew file mode 100644 index 000000000..ec66e56ef --- /dev/null +++ b/module/web/static/img/default/downloading-icon-red.png diff --git a/module/web/static/img/default/queue-icon-white.png b/module/web/static/img/default/queue-icon-white.png Binary files differnew file mode 100644 index 000000000..2dd520607 --- /dev/null +++ b/module/web/static/img/default/queue-icon-white.png diff --git a/module/web/static/img/default/reconnecting-icon-green.png b/module/web/static/img/default/reconnecting-icon-green.png Binary files differnew file mode 100644 index 000000000..93e3732f0 --- /dev/null +++ b/module/web/static/img/default/reconnecting-icon-green.png diff --git a/module/web/static/img/default/reconnecting-icon-red.png b/module/web/static/img/default/reconnecting-icon-red.png Binary files differnew file mode 100644 index 000000000..e97a10270 --- /dev/null +++ b/module/web/static/img/default/reconnecting-icon-red.png diff --git a/module/web/static/img/default/speed-icon-white.png b/module/web/static/img/default/speed-icon-white.png Binary files differnew file mode 100644 index 000000000..dc0fd6866 --- /dev/null +++ b/module/web/static/img/default/speed-icon-white.png |