summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-06-11 18:08:47 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-06-11 18:08:47 +0200
commit686797eb6dde2d0c7ac6b9cc5c900a2878a8c06f (patch)
treecd1de46c021f1b01096c216cf7269dd67caa1fb7 /core/css
parent27996d1c64a4fab8334b9188b99011097e7ab605 (diff)
downloadnextcloud-server-686797eb6dde2d0c7ac6b9cc5c900a2878a8c06f.tar.gz
nextcloud-server-686797eb6dde2d0c7ac6b9cc5c900a2878a8c06f.zip
multiselect: more breathing space for entries
Diffstat (limited to 'core/css')
-rw-r--r--core/css/multiselect.css17
1 files changed, 13 insertions, 4 deletions
diff --git a/core/css/multiselect.css b/core/css/multiselect.css
index 667eba86e7c..23aec23437f 100644
--- a/core/css/multiselect.css
+++ b/core/css/multiselect.css
@@ -33,10 +33,19 @@ ul.multiselectoptions>li {
white-space: nowrap;
}
-ul.multiselectoptions>li>input[type="checkbox"] {
- margin-top: 3px;
- margin-right: 5px;
- margin-left: 3px;
+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;
}
div.multiselect {