aboutsummaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-12-21 00:52:29 +0100
committerThomas Tanghus <thomas@tanghus.net>2012-12-21 00:52:29 +0100
commit73b186cc60ddf938936bf9c8c10b714a9c9f1587 (patch)
tree9dc93abc39bbb209a34619abf6f5a4ae9d8a25f2 /core/css
parent5fb4ed2d92b28bfcd0647233421a3614b00e6d4c (diff)
parent6d643f9e74c32bbcb84d03404ee1cfd4613b6e2a (diff)
downloadnextcloud-server-73b186cc60ddf938936bf9c8c10b714a9c9f1587.tar.gz
nextcloud-server-73b186cc60ddf938936bf9c8c10b714a9c9f1587.zip
Merge branch 'fix_multiSelect' of github.com:owncloud/core into enhanced_multiSelect
Diffstat (limited to 'core/css')
-rw-r--r--core/css/multiselect.css27
1 files changed, 23 insertions, 4 deletions
diff --git a/core/css/multiselect.css b/core/css/multiselect.css
index 99f0e039334..31c8ef88eb9 100644
--- a/core/css/multiselect.css
+++ b/core/css/multiselect.css
@@ -5,15 +5,25 @@
ul.multiselectoptions {
background-color:#fff;
border:1px solid #ddd;
- border-bottom-left-radius:.5em;
- border-bottom-right-radius:.5em;
border-top:none;
box-shadow:0 1px 1px #ddd;
padding-top:.5em;
position:absolute;
+ max-height: 20em;
+ overflow-y: auto;
z-index:49;
}
+ ul.multiselectoptions.down {
+ border-bottom-left-radius:.5em;
+ border-bottom-right-radius:.5em;
+ }
+
+ ul.multiselectoptions.up {
+ border-top-left-radius:.5em;
+ border-top-right-radius:.5em;
+ }
+
ul.multiselectoptions>li {
overflow:hidden;
white-space:nowrap;
@@ -30,11 +40,20 @@
div.multiselect.active {
background-color:#fff;
+ position:relative;
+ z-index:50;
+ }
+
+ div.multiselect.up {
+ border-top:0 none;
+ border-top-left-radius:0;
+ border-top-right-radius:0;
+ }
+
+ div.multiselect.down {
border-bottom:none;
border-bottom-left-radius:0;
border-bottom-right-radius:0;
- position:relative;
- z-index:50;
}
div.multiselect>span:first-child {