Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: Fix share invite button being pushed down in space sharing

We have fixed a bug where the "Share" button in the invite collaborator form was being pushed down when sharing a space. The layout now properly aligns items vertically and prevents the button from wrapping to a new line.

https://github.com/owncloud/web/pull/13793
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@
</template>
</oc-select>
</div>
<div class="oc-flex oc-flex-between oc-flex-wrap oc-mb-l oc-mt-s">
<div class="oc-flex oc-flex-between oc-flex-middle oc-mb-l oc-mt-s">
<role-dropdown
mode="create"
:show-icon="isRunningOnEos"
class="role-selection-dropdown"
:is-external="isExternalShareRoleType"
@option-change="collaboratorRoleChanged"
/>
<div class="oc-flex oc-flex-middle">
<div class="oc-flex oc-flex-middle oc-flex-nowrap">
<expiration-date-indicator
v-if="expirationDate"
:expiration-date="DateTime.fromISO(expirationDate)"
Expand Down Expand Up @@ -135,14 +135,9 @@
<span v-text="$gettext(saveButtonText)" />
</oc-button>
</div>
<div class="oc-width-1-1 oc-mt-s">
<oc-checkbox
v-if="isRunningOnEos"
v-model="notifyEnabled"
:value="false"
:label="$gettext('Notify via mail')"
/>
</div>
</div>
<div v-if="isRunningOnEos" class="oc-mb-l">
<oc-checkbox v-model="notifyEnabled" :value="false" :label="$gettext('Notify via mail')" />
</div>
<oc-hidden-announcer level="assertive" :announcement="announcement" />
</div>
Expand Down Expand Up @@ -577,6 +572,7 @@ function resetFocusOnInvite(event: CollaboratorAutoCompleteItem[]) {
#new-collaborators-form-create-button {
padding-left: 30px;
padding-right: 30px;
white-space: nowrap;

.oc-spinner {
margin-left: -0.5rem;
Expand Down
Loading