nextcloud/core/css/multiselect.css

120 lines
2.5 KiB
CSS
Raw Normal View History

2013-06-11 20:02:30 +04:00
/* Copyright (c) 2011, Jan-Christoph Borchardt, http: //jancborchardt.net
2013-06-11 20:01:50 +04:00
This file is licensed under the Affero General Public License version 3 or later.
See the COPYING-README file. */
2013-06-11 20:01:50 +04:00
ul.multiselectoptions {
2013-06-11 20:02:30 +04:00
background-color: #fff;
border: 1px solid #ddd;
border-top: none;
box-shadow: 0 1px 1px #ddd;
padding-top: 8px;
2013-06-11 20:02:30 +04:00
position: absolute;
max-height: 20em;
overflow-y: auto;
z-index: 49;
2013-06-11 20:01:50 +04:00
}
2012-10-24 15:09:05 +04:00
2013-06-11 20:01:50 +04:00
ul.multiselectoptions.down {
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
width: 100%; /* do not cut off group names */
-webkit-box-shadow: 0px 0px 20px rgba(29,45,68,.4);
-moz-box-shadow: 0px 0px 20px rgba(29,45,68,.4);
box-shadow: 0px 0px 20px rgba(29,45,68,.4);
2013-06-11 20:01:50 +04:00
}
2012-12-03 21:56:15 +04:00
2013-06-11 20:01:50 +04:00
ul.multiselectoptions.up {
border-top-left-radius: 8px;
border-top-right-radius: 8px;
2013-06-11 20:01:50 +04:00
}
2012-12-03 21:56:15 +04:00
2013-06-11 20:01:50 +04:00
ul.multiselectoptions>li {
2013-06-11 20:02:30 +04:00
overflow: hidden;
white-space: nowrap;
2013-06-11 20:01:50 +04:00
}
2012-10-24 15:09:05 +04:00
ul.multiselectoptions > li > input[type="checkbox"] {
margin: 10px 7px;
vertical-align: middle;
}
ul.multiselectoptions > li input[type='checkbox']+label {
font-weight: normal;
display: inline-block;
width: 100%;
padding: 5px 27px;
margin-left: -27px; /* to have area around checkbox clickable as well */
}
ul.multiselectoptions > li input[type='checkbox']:checked+label {
font-weight: bold;
2013-06-11 20:01:50 +04:00
}
2013-04-23 17:34:16 +04:00
div.multiselect, select.multiselect {
2013-06-11 20:02:30 +04:00
display: inline-block;
max-width: 200px;
min-width: 150px;
padding-right: 10px;
min-height: 20px;
2013-06-11 20:02:30 +04:00
position: relative;
vertical-align: bottom;
2013-06-11 20:01:50 +04:00
}
2012-10-24 15:09:05 +04:00
/* To make a select look like a multiselect until it's initialized */
select.multiselect {
height: 30px;
min-width: 113px;
}
2013-06-11 20:01:50 +04:00
div.multiselect.active {
2013-06-11 20:02:30 +04:00
background-color: #fff;
position: relative;
z-index: 50;
2013-06-11 20:01:50 +04:00
}
2012-12-03 21:56:15 +04:00
2013-06-11 20:01:50 +04:00
div.multiselect.up {
2013-06-11 20:02:30 +04:00
border-top: 0 none;
border-top-left-radius: 0;
border-top-right-radius: 0;
2013-06-11 20:01:50 +04:00
}
2012-12-03 21:56:15 +04:00
2013-06-11 20:01:50 +04:00
div.multiselect.down {
2013-06-11 20:02:30 +04:00
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
2013-06-11 20:01:50 +04:00
}
2012-10-24 15:09:05 +04:00
2013-06-11 20:01:50 +04:00
div.multiselect>span:first-child {
2013-06-11 20:02:30 +04:00
float: left;
margin-right: 32px;
2013-06-11 20:02:30 +04:00
overflow: hidden;
text-overflow: ellipsis;
width: 90%;
2013-06-11 20:01:50 +04:00
}
2012-10-24 15:09:05 +04:00
2013-06-11 20:01:50 +04:00
div.multiselect>span:last-child {
2013-06-11 20:02:30 +04:00
position: absolute;
right: 13px;
2013-06-11 20:01:50 +04:00
}
2012-10-24 15:09:05 +04:00
2013-06-11 20:01:50 +04:00
ul.multiselectoptions input.new {
padding-bottom: 3px;
padding-top: 3px;
2013-06-11 20:02:30 +04:00
margin: 0;
2013-06-11 20:01:50 +04:00
}
ul.multiselectoptions > li.creator {
padding: 10px;
font-weight: bold;
}
ul.multiselectoptions > li.creator > input {
width: 95% !important; /* do not constrain size of text input */
padding: 5px;
margin: -5px;
}
2013-08-01 20:59:32 +04:00
.ie8 div.multiselect span:first-child {
display:block;
position:relative;
width: 90%;
margin-right:-1px;
}