diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-08-19 13:07:04 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2016-10-03 09:06:52 +0200 |
commit | 092eae496638a487b1329f6a10f48d73073a9296 (patch) | |
tree | 559f084d925e192281464f28de4d1ddd0543796c | |
parent | e343d6fb0132a0b593dc86aec72626c24d408e29 (diff) | |
download | nextcloud-server-092eae496638a487b1329f6a10f48d73073a9296.tar.gz nextcloud-server-092eae496638a487b1329f6a10f48d73073a9296.zip |
Move options to the right
-rw-r--r-- | core/css/share.css | 12 | ||||
-rw-r--r-- | core/js/sharedialogshareelistview.js | 2 |
2 files changed, 11 insertions, 3 deletions
diff --git a/core/css/share.css b/core/css/share.css index 7d11cbff381..40f00fde39f 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -63,6 +63,15 @@ white-space: normal; } +#shareWithList .sharingOptionsGroup { + position: absolute; + right: 0; +} + +#shareWithList .sharingOptionsGroup .popovermenu { + right: 12px; +} + #shareWithList .shareOption { white-space: nowrap; display: inline-block; @@ -104,11 +113,10 @@ a.showCruds { } a.unshare { - display:inline; + display:inline-block; opacity:.5; padding: 10px; margin-top: -5px; - margin-right: -10px; } #link { diff --git a/core/js/sharedialogshareelistview.js b/core/js/sharedialogshareelistview.js index 77f6d96ecee..212bca96186 100644 --- a/core/js/sharedialogshareelistview.js +++ b/core/js/sharedialogshareelistview.js @@ -38,7 +38,7 @@ '<label for="canEdit-{{cid}}-{{shareWith}}">{{canEditLabel}}</label>' + '</span>' + '{{/if}}' + - '<span class="icon icon-more"></span>' + + '<a href="#"><span class="icon icon-more"></span></a>' + '<div class="popovermenu bubble hidden menu">' + '<ul>' + '{{#if isResharingAllowed}} {{#if sharePermissionPossible}}' + |