diff options
author | godofdream <soilfiction@gmail.com> | 2012-08-14 22:37:58 +0200 |
---|---|---|
committer | godofdream <soilfiction@gmail.com> | 2012-08-14 22:37:58 +0200 |
commit | 90ba0c9f3adccd02b62ec3ca6b4af849a7253d14 (patch) | |
tree | 530b331524af0d7d1b1f8234bb73548f029bf430 /module/web/static/css/default | |
parent | Merge (diff) | |
download | pyload-90ba0c9f3adccd02b62ec3ca6b4af849a7253d14.tar.xz |
first Design of Queue and Settings
Diffstat (limited to 'module/web/static/css/default')
-rw-r--r-- | module/web/static/css/default/queue.css | 82 | ||||
-rw-r--r-- | module/web/static/css/default/style.css | 3 |
2 files changed, 84 insertions, 1 deletions
diff --git a/module/web/static/css/default/queue.css b/module/web/static/css/default/queue.css new file mode 100644 index 000000000..645beadae --- /dev/null +++ b/module/web/static/css/default/queue.css @@ -0,0 +1,82 @@ +
+#queue-list {
+ list-style: none;
+ padding-left: 0;
+}
+
+#page-actions{
+ list-style: none;
+}
+
+.pack{
+ border: 2px solid #000000;
+ padding: 0;
+ -moz-border-radius: 10px;
+ border-radius: 10px;
+}
+
+.pack_header{
+ background: url("../../img/default/main-wrapper-bg.png") repeat-x;
+ cursor: pointer;
+ border: 2px solid #000000;
+ margin: 0px;
+ height: 23px;
+ -moz-border-radius-topleft: 10px;
+ -moz-border-radius-topright: 10px;
+ -webkit-border-top-left-radius: 10px;
+ -webkit-border-top-right-radius: 10px;
+ border-top-left-radius: 10px;
+ border-top-right-radius: 10px;
+}
+
+.pack_icon{
+ cursor: move;
+ height: 20px;
+ float: left;
+ margin-left: 5px;
+ padding-left: 25px;
+ background: url("../../img/default/icon_folder.png")no-repeat;
+}
+
+.pack_name{
+ vertical-align: middle;
+ color: #D5D5D5;
+}
+
+.pack_progressbar{
+ height: 8px;
+ margin: 8px 5px;
+}
+
+.pack_toolbar{
+ height: 24px;
+ float: left;
+ padding-left: 22px;
+}
+
+.pack_toolbar div{
+ height: 20px;
+ float: left;
+ padding-left: 22px;
+}
+
+.pack_toolbar_delete {
+ background: url("../../img/default/delete.png")no-repeat;
+}
+
+.pack_toolbar_restart {
+ background: url("../../img/default/arrow_refresh.png")no-repeat;
+}
+
+.pack_toolbar_edit{
+ background: url("../../img/default/pencil.png")no-repeat;
+}
+
+.pack_children{
+ display: none;
+}
+
+.sort_children{
+ list-style: none;
+ padding-left: 0;
+}
\ No newline at end of file diff --git a/module/web/static/css/default/style.css b/module/web/static/css/default/style.css index f882e4a43..90701b121 100644 --- a/module/web/static/css/default/style.css +++ b/module/web/static/css/default/style.css @@ -189,8 +189,9 @@ header .logo { border: 2px solid #000000;
padding: 15px;
font-size: 17px;
- -moz-border-radius: 15px;
border-radius: 15px;
+ -moz-border-radius: 15px;
+ -webkit-border-radius: 15px;
}
.login input, .login div{
|