diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-17 15:46:42 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-17 15:46:42 +0200 |
commit | 68f1510f5a6ab632db19fc63f29c0475de9feb9d (patch) | |
tree | 7be8c9c3890465128a50ad8c6880d70ed7720bc7 /module/web/static/css/default | |
parent | added bootstrap (diff) | |
download | pyload-68f1510f5a6ab632db19fc63f29c0475de9feb9d.tar.xz |
nav + search bar for dashboard
Diffstat (limited to 'module/web/static/css/default')
-rw-r--r-- | module/web/static/css/default/queue.css | 94 | ||||
-rw-r--r-- | module/web/static/css/default/style.css | 22 |
2 files changed, 21 insertions, 95 deletions
diff --git a/module/web/static/css/default/queue.css b/module/web/static/css/default/queue.css deleted file mode 100644 index 265432331..000000000 --- a/module/web/static/css/default/queue.css +++ /dev/null @@ -1,94 +0,0 @@ -
-#queue-list {
- list-style: none;
- padding-left: 0;
-}
-
-#page-actions{
- list-style: none;
-}
-
-.pack{
- border: 2px solid #CFCFCF;
- padding: 0;
-}
-
-.pack_header{
- background-color: #CFCFCF;
- cursor: pointer;
- border: 2px solid #CFCFCF;
- margin: 0px;
- height: 25px;
-
-}
-
-.pack_icon{
- display:inline-block;
- cursor: move;
- height:20px;
- margin: 2px 7px;
- padding: 0 0 0 20px;
- background: url("../../img/default/icon_folder.png")no-repeat;
-}
-
-.pack_name{
- display:inline-block;
-
- top:0px;
- margin: 0;
- padding:0;
- color: #000000;
-}
-
-.pack_progressbar_wrapper{
- display:inline-block;
- vertical-align: middle;
- height:9px;
- width:50%;
- right:15%;
- margin-top: 6px;
- position:absolute;
-}
-
-.pack_progressbar{
- display:block;
- width:100%;
- height: inherit;
- text-align: center;
- margin: 0;
-}
-
-.pack_toolbar{
- display:inline-block;
- height:inherit;
- right:0;
- margin: 0;
-
-}
-
-.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 93ac91d89..844955e29 100644 --- a/module/web/static/css/default/style.css +++ b/module/web/static/css/default/style.css @@ -38,10 +38,12 @@ ul, ol { a {
text-decoration: none;
- color: #FF7637;
+ color: #3a79aa;
}
a:hover {
+ text-decoration: none;
+ color: #FF7637;
}
#wrap {
@@ -290,4 +292,22 @@ footer h2 { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007f7f7f', endColorstr='#e67f7f7f',GradientType=1 );
z-index: 50;
opacity: 0;
+}
+
+/*
+ Dashboard
+*/
+
+.nav > li > a:hover {
+ color: #3a79aa;
+}
+
+#dash-nav form {
+ margin-top: 8px;
+ margin-bottom: 0;
+}
+
+#dash-nav input, #dash-nav button {
+ padding-top: 2px;
+ padding-bottom: 2px;
}
\ No newline at end of file |