diff options
author | Raghu Nayyar <me@iraghu.com> | 2013-04-24 09:33:37 -0700 |
---|---|---|
committer | Raghu Nayyar <me@iraghu.com> | 2013-04-24 09:33:37 -0700 |
commit | 063e1238bfa446961032a74b7e9851b0b52e738d (patch) | |
tree | ee71f36360e07d3d4babe69c5357dcb8b30146b8 /core | |
parent | 62b9c88bb909212ac96018fed69bb225bd391619 (diff) | |
parent | e15afcb011e6f25483df691b385f0d360d6736a6 (diff) | |
download | nextcloud-server-063e1238bfa446961032a74b7e9851b0b52e738d.tar.gz nextcloud-server-063e1238bfa446961032a74b7e9851b0b52e738d.zip |
Merge pull request #3096 from owncloud/add_missing_space_for_new_groups
Fixing #3095
Diffstat (limited to 'core')
-rw-r--r-- | core/css/multiselect.css | 8 | ||||
-rw-r--r-- | core/js/multiselect.js | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/core/css/multiselect.css b/core/css/multiselect.css index 31c8ef88eb9..def4e60d74d 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -29,6 +29,12 @@ white-space:nowrap; } + ul.multiselectoptions>li>input[type="checkbox"] { + margin-top: 3px; + margin-right: 5px; + margin-left: 3px; + } + div.multiselect { display:inline-block; max-width:400px; @@ -75,4 +81,4 @@ padding-bottom:.2em; padding-top:.2em; margin:0; - }
\ No newline at end of file + } diff --git a/core/js/multiselect.js b/core/js/multiselect.js index bc4223feb64..463c397d8cd 100644 --- a/core/js/multiselect.js +++ b/core/js/multiselect.js @@ -316,4 +316,4 @@ return span; }; -})( jQuery );
\ No newline at end of file +})( jQuery ); |