Skip to content

Commit e5c31b7

Browse files
committed
bring back permissions for mail shares
Signed-off-by: Bjoern Schiessle <[email protected]>
1 parent 46b4891 commit e5c31b7

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

apps/files/css/files.css

+1
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,7 @@ html.ie8 #fileList tr.selected td.filename>.selectCheckBox {
547547
.bubble,
548548
#app-navigation .app-navigation-entry-menu {
549549
border-top-right-radius: 3px;
550+
min-width: 100px;
550551
}
551552
.bubble:after,
552553
#app-navigation .app-navigation-entry-menu:after {

core/js/sharedialogshareelistview.js

+6-8
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
'</span>' +
3535
'{{/unless}}' +
3636
'{{/if}}' +
37-
'{{#unless isMailShare}}' +
3837
'<a href="#"><span class="icon icon-more"></span></a>' +
3938
'<div class="popovermenu bubble hidden menu">' +
4039
'<ul>' +
@@ -47,37 +46,36 @@
4746
'</li>' +
4847
'{{/unless}} {{/if}} {{/if}}' +
4948
'{{#if isFolder}}' +
50-
'{{#if createPermissionPossible}}' +
49+
'{{#if createPermissionPossible}}{{#unless isMailShare}}' +
5150
'<li>' +
5251
'<span class="shareOption">' +
5352
'<input id="canCreate-{{cid}}-{{shareWith}}" type="checkbox" name="create" class="permissions checkbox" {{#if hasCreatePermission}}checked="checked"{{/if}} data-permissions="{{createPermission}}"/>' +
5453
'<label for="canCreate-{{cid}}-{{shareWith}}">{{createPermissionLabel}}</label>' +
5554
'</span>' +
5655
'</li>' +
57-
'{{/if}}' +
58-
'{{#if updatePermissionPossible}}' +
56+
'{{/unless}}{{/if}}' +
57+
'{{#if updatePermissionPossible}}{{#unless isMailShare}}' +
5958
'<li>' +
6059
'<span class="shareOption">' +
6160
'<input id="canUpdate-{{cid}}-{{shareWith}}" type="checkbox" name="update" class="permissions checkbox" {{#if hasUpdatePermission}}checked="checked"{{/if}} data-permissions="{{updatePermission}}"/>' +
6261
'<label for="canUpdate-{{cid}}-{{shareWith}}">{{updatePermissionLabel}}</label>' +
6362
'</span>' +
6463
'</li>' +
65-
'{{/if}}' +
66-
'{{#if deletePermissionPossible}}' +
64+
'{{/unless}}{{/if}}' +
65+
'{{#if deletePermissionPossible}}{{#unless isMailShare}}' +
6766
'<li>' +
6867
'<span class="shareOption">' +
6968
'<input id="canDelete-{{cid}}-{{shareWith}}" type="checkbox" name="delete" class="permissions checkbox" {{#if hasDeletePermission}}checked="checked"{{/if}} data-permissions="{{deletePermission}}"/>' +
7069
'<label for="canDelete-{{cid}}-{{shareWith}}">{{deletePermissionLabel}}</label>' +
7170
'</span>' +
7271
'</li>' +
73-
'{{/if}}' +
72+
'{{/unless}}{{/if}}' +
7473
'{{/if}}' +
7574
'<li>' +
7675
'<a href="#" class="unshare"><span class="icon-loading-small hidden"></span><span class="icon icon-delete"></span><span>{{unshareLabel}}</span></a>' +
7776
'</li>' +
7877
'</ul>' +
7978
'</div>' +
80-
'{{/unless}}' +
8179
'</span>' +
8280
'</li>' +
8381
'{{/each}}' +

0 commit comments

Comments
 (0)