summaryrefslogtreecommitdiffstats
path: root/core/css/multiselect.css
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-12-03 18:56:15 +0100
committerThomas Tanghus <thomas@tanghus.net>2012-12-04 18:00:13 +0100
commit9ddd754bce4c9ffcef86748e2abcd1d727f3f382 (patch)
tree69da9f9d284556a755d2dc53bc3641556da9a4ab /core/css/multiselect.css
parent9e6ffece64ab8b44bc58ecb01249b682e8d45ba6 (diff)
downloadnextcloud-server-9ddd754bce4c9ffcef86748e2abcd1d727f3f382.tar.gz
nextcloud-server-9ddd754bce4c9ffcef86748e2abcd1d727f3f382.zip
Enhanced multiSelect jquery plugin.
Diffstat (limited to 'core/css/multiselect.css')
-rw-r--r--core/css/multiselect.css25
1 files changed, 21 insertions, 4 deletions
diff --git a/core/css/multiselect.css b/core/css/multiselect.css
index 99f0e039334..8639577f0fc 100644
--- a/core/css/multiselect.css
+++ b/core/css/multiselect.css
@@ -5,8 +5,6 @@
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;
@@ -14,6 +12,16 @@
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 +38,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 {