summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/css/apps.scss1
-rw-r--r--core/css/share.scss9
-rw-r--r--core/js/sharedialogshareelistview.js8
3 files changed, 8 insertions, 10 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss
index 93e60fbfbf1..167f27f00c9 100644
--- a/core/css/apps.scss
+++ b/core/css/apps.scss
@@ -632,6 +632,7 @@ em {
}
> span {
cursor: pointer;
+ white-space: nowrap;
}
> p {
width: 150px;
diff --git a/core/css/share.scss b/core/css/share.scss
index 7ce365a1454..1dbec689898 100644
--- a/core/css/share.scss
+++ b/core/css/share.scss
@@ -73,7 +73,7 @@
#shareWithList {
list-style-type: none;
padding: 8px;
- li {
+ > li {
padding-top: 10px;
padding-bottom: 10px;
font-weight: bold;
@@ -85,8 +85,8 @@
flex-shrink: 0;
position: relative;
.popovermenu {
- right: -6px;
- top: 40px;
+ right: -11px;
+ top: 35px;
padding: 3px 6px;
}
}
@@ -112,9 +112,6 @@
vertical-align: middle;
flex-grow: 5;
}
- li label {
- margin-right: 8px;
- }
}
a {
diff --git a/core/js/sharedialogshareelistview.js b/core/js/sharedialogshareelistview.js
index 0fe0747dd59..4647dedd722 100644
--- a/core/js/sharedialogshareelistview.js
+++ b/core/js/sharedialogshareelistview.js
@@ -59,7 +59,7 @@
'<ul>' +
'{{#if isResharingAllowed}} {{#if sharePermissionPossible}} {{#unless isMailShare}}' +
'<li>' +
- '<span class="shareOption">' +
+ '<span class="shareOption menuitem">' +
'<input id="canShare-{{cid}}-{{shareWith}}" type="checkbox" name="share" class="permissions checkbox" {{#if hasSharePermission}}checked="checked"{{/if}} data-permissions="{{sharePermission}}" />' +
'<label for="canShare-{{cid}}-{{shareWith}}">{{canShareLabel}}</label>' +
'</span>' +
@@ -68,7 +68,7 @@
'{{#if isFolder}}' +
'{{#if createPermissionPossible}}{{#unless isMailShare}}' +
'<li>' +
- '<span class="shareOption">' +
+ '<span class="shareOption menuitem">' +
'<input id="canCreate-{{cid}}-{{shareWith}}" type="checkbox" name="create" class="permissions checkbox" {{#if hasCreatePermission}}checked="checked"{{/if}} data-permissions="{{createPermission}}"/>' +
'<label for="canCreate-{{cid}}-{{shareWith}}">{{createPermissionLabel}}</label>' +
'</span>' +
@@ -76,7 +76,7 @@
'{{/unless}}{{/if}}' +
'{{#if updatePermissionPossible}}{{#unless isMailShare}}' +
'<li>' +
- '<span class="shareOption">' +
+ '<span class="shareOption menuitem">' +
'<input id="canUpdate-{{cid}}-{{shareWith}}" type="checkbox" name="update" class="permissions checkbox" {{#if hasUpdatePermission}}checked="checked"{{/if}} data-permissions="{{updatePermission}}"/>' +
'<label for="canUpdate-{{cid}}-{{shareWith}}">{{updatePermissionLabel}}</label>' +
'</span>' +
@@ -84,7 +84,7 @@
'{{/unless}}{{/if}}' +
'{{#if deletePermissionPossible}}{{#unless isMailShare}}' +
'<li>' +
- '<span class="shareOption">' +
+ '<span class="shareOption menuitem">' +
'<input id="canDelete-{{cid}}-{{shareWith}}" type="checkbox" name="delete" class="permissions checkbox" {{#if hasDeletePermission}}checked="checked"{{/if}} data-permissions="{{deletePermission}}"/>' +
'<label for="canDelete-{{cid}}-{{shareWith}}">{{deletePermissionLabel}}</label>' +
'</span>' +