diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-24 13:09:05 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-24 13:09:09 +0200 |
commit | 916e0fc343e176233ac121ac51220dce660b1a36 (patch) | |
tree | 5f3928593968805e0cd0fde7bb38bda372e4765e /core/css/multiselect.css | |
parent | 4c234bd66696e50d3779215f0a7c7dea7054d6a4 (diff) | |
download | nextcloud-server-916e0fc343e176233ac121ac51220dce660b1a36.tar.gz nextcloud-server-916e0fc343e176233ac121ac51220dce660b1a36.zip |
Place the brackets in the first line
Diffstat (limited to 'core/css/multiselect.css')
-rw-r--r-- | core/css/multiselect.css | 112 |
1 files changed, 55 insertions, 57 deletions
diff --git a/core/css/multiselect.css b/core/css/multiselect.css index 477f511e2c5..99f0e039334 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -2,60 +2,58 @@ This file is licensed under the Affero General Public License version 3 or later. See the COPYING-README file. */ -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; - z-index: 49; -} -ul.multiselectoptions>li -{ - overflow: hidden; - white-space: nowrap; -} -div.multiselect -{ - display: inline; - display: inline-block; - max-width: 400px; - min-width: 100px; - padding-right: .6em; - position: relative; - vertical-align: bottom; -} -div.multiselect.active -{ - background-color: #fff; - border-bottom: none; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - position: relative; - z-index: 50; -} -div.multiselect>span:first-child -{ - float: left; - margin-right: 2em; - overflow: hidden; - text-overflow: ellipsis; - width: 90%; -} -div.multiselect>span:last-child -{ - position: absolute; - right: .8em; -} -ul.multiselectoptions input.new -{ - border-top-left-radius: 0; - border-top-right-radius: 0; - margin: 0; - padding-bottom: 0.2em; - padding-top: 0.2em; -}
\ No newline at end of file + 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; + z-index:49; + } + + ul.multiselectoptions>li { + overflow:hidden; + white-space:nowrap; + } + + div.multiselect { + display:inline-block; + max-width:400px; + min-width:100px; + padding-right:.6em; + position:relative; + vertical-align:bottom; + } + + div.multiselect.active { + background-color:#fff; + border-bottom:none; + border-bottom-left-radius:0; + border-bottom-right-radius:0; + position:relative; + z-index:50; + } + + div.multiselect>span:first-child { + float:left; + margin-right:2em; + overflow:hidden; + text-overflow:ellipsis; + width:90%; + } + + div.multiselect>span:last-child { + position:absolute; + right:.8em; + } + + ul.multiselectoptions input.new { + border-top-left-radius:0; + border-top-right-radius:0; + padding-bottom:.2em; + padding-top:.2em; + margin:0; + }
\ No newline at end of file |