diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-04-19 17:41:26 -0500 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-04-19 17:41:26 -0500 |
commit | 16b83977651adceedab372722957737b13a0c898 (patch) | |
tree | 9ef203e37b6c689e9d1bab65f9421c10f180183a /apps | |
parent | 01c9d00e1d6f5c558cade0689283fea953b3f581 (diff) | |
download | nextcloud-server-16b83977651adceedab372722957737b13a0c898.tar.gz nextcloud-server-16b83977651adceedab372722957737b13a0c898.zip |
Fix clickable area in share permissions menu
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/css/sharetabview.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/files_sharing/css/sharetabview.scss b/apps/files_sharing/css/sharetabview.scss index 6fd2b9b3165..82f0ffa5822 100644 --- a/apps/files_sharing/css/sharetabview.scss +++ b/apps/files_sharing/css/sharetabview.scss @@ -40,6 +40,17 @@ padding: 18px 0 18px 36px; } +/* fix clickable area because in the share tab popover the label is inside the actual menu item*/ +#shareWithList .popovermenu .shareOption { + padding-right: 0 !important; +} +/* fix clickable area because in the share tab popover the label is inside the actual menu item*/ +.shareTabView .popovermenu label { + width: 100%; + display: inline-block; + padding: 0 10px 0 0 !important; +} + .shareTabView label { white-space: nowrap; } |