diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-02-18 20:43:36 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-02-18 20:43:36 +0100 |
commit | a254bc2698ada46484d29563dfaac3ea8e623c8d (patch) | |
tree | 6129795240671cb6e8cf940a5793d654b9553c15 /module/web | |
parent | worked on webui (diff) | |
download | pyload-a254bc2698ada46484d29563dfaac3ea8e623c8d.tar.xz |
added shadow to package box
Diffstat (limited to 'module/web')
-rw-r--r-- | module/web/static/css/default/dashboard.less | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/module/web/static/css/default/dashboard.less b/module/web/static/css/default/dashboard.less index 531dc9be3..accec18a9 100644 --- a/module/web/static/css/default/dashboard.less +++ b/module/web/static/css/default/dashboard.less @@ -32,12 +32,14 @@ .package-frame {
position: absolute;
- border-radius: 5px;
top: -@frame-top;
left: -@frame-top / 2;
right: -@frame-top / 2;
- bottom: -@frame-bottom + 4px; // + size of visible bar
+ bottom: -@frame-bottom + 2px; // + size of visible bar
z-index: -1; // lies under package
+ border: 1px solid @grey;
+ border-radius: 5px;
+ box-shadow: 4px 4px 5px @dark;
}
.package-item {
|