From 5130eca3e3b76efe48332e6d6d063bd728a62d69 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 23 Mar 2015 14:40:56 +0100 Subject: [PATCH] combine labels with inputs in sharing dialog, fix #14796 --- core/css/share.css | 1 - core/js/share.js | 10 +++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/core/css/share.css b/core/css/share.css index a0b041741f3..94811100fcf 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -65,7 +65,6 @@ #shareWithList label input[type=checkbox]{ margin-left: 0; - top: 3px; position: relative; } #shareWithList .username{ diff --git a/core/js/share.js b/core/js/share.js index 8804db12a08..2d3b36ae63d 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -674,23 +674,23 @@ OC.Share={ html += ' '; } if (oc_appconfig.core.resharingAllowed && (possiblePermissions & OC.PERMISSION_SHARE)) { - html += ''; + html += ''; } if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) { - html += ''; + html += ''; } if (shareType !== OC.Share.SHARE_TYPE_REMOTE) { showCrudsButton = ''+t('core', 'access control')+''; } html += ''; html += ''; -- 2.39.5