diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-12-23 20:10:01 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-12-23 20:10:01 +0100 |
commit | b18fa59e40ebe9c03f81d49cf53a85bc728de8a7 (patch) | |
tree | cf28b8bb661cbb95592be89177cf82a325a0f6ea /module/web/static/css/default | |
parent | cleaned the settings page (diff) | |
download | pyload-b18fa59e40ebe9c03f81d49cf53a85bc728de8a7.tar.xz |
proper selecting, expanding and rendering of packageViews
Diffstat (limited to 'module/web/static/css/default')
-rw-r--r-- | module/web/static/css/default/dashboard.less | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/module/web/static/css/default/dashboard.less b/module/web/static/css/default/dashboard.less index 6d0f8cf65..d67f6ce98 100644 --- a/module/web/static/css/default/dashboard.less +++ b/module/web/static/css/default/dashboard.less @@ -74,6 +74,10 @@ padding-left: 8px;
padding-right: 8px;
+ .name {
+ cursor: pointer;
+ }
+
i {
margin-top: 3px;
}
@@ -91,7 +95,11 @@ .package-row.first {
width: 50%;
font-weight: bold;
- cursor: pointer;
+
+ i {
+ cursor: move;
+ }
+
}
.package-row.second {
@@ -110,6 +118,7 @@ // Box containing the files
.package-view > ul {
+ overflow: hidden;
.gradient(left, @light, @greenLight);
// box-shadow: 0 0 5px black;
}
@@ -158,6 +167,6 @@ FANCY CHECKBOXES cursor: pointer;
}
-.checkbox .checked {
+.checkbox.checked {
background: url(../../img/default/checks_sheet.png) -21px top no-repeat;
}
|