diff options
author | Björn Schießle <bjoern@schiessle.org> | 2017-04-20 16:49:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-20 16:49:00 +0200 |
commit | 810fb7ff2cd14044b604d9bbae1b6ef453779998 (patch) | |
tree | cec8024546a09d86d1d96ca0b1d979321d3efbf6 /apps/files_sharing | |
parent | a4086a6ec513127b00699a5ac2497827b9dbf8fb (diff) | |
parent | 16b83977651adceedab372722957737b13a0c898 (diff) | |
download | nextcloud-server-810fb7ff2cd14044b604d9bbae1b6ef453779998.tar.gz nextcloud-server-810fb7ff2cd14044b604d9bbae1b6ef453779998.zip |
Merge pull request #4402 from nextcloud/fix-clickable-area
Fix clickable area in share permissions menu
Diffstat (limited to 'apps/files_sharing')
-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; } |