diff options
author | godofdream <soilfiction@gmail.com> | 2012-08-14 22:41:40 +0200 |
---|---|---|
committer | godofdream <soilfiction@gmail.com> | 2012-08-14 22:41:40 +0200 |
commit | a9ce4aa2537455557b7632e98146a5097661f781 (patch) | |
tree | 0c650f576edfa9028ef57e195e0d97c3fe1ac7e1 /module/web/static/css/default | |
parent | added dialog window (diff) | |
parent | first Design of Queue and Settings (diff) | |
download | pyload-a9ce4aa2537455557b7632e98146a5097661f781.tar.xz |
Merge
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 87cd60831..a5f0d7c9b 100644 --- a/module/web/static/css/default/style.css +++ b/module/web/static/css/default/style.css @@ -193,8 +193,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{
|