Merge pull request #2212 from nextcloud/fix/glitch-buttons-on-mobile

fix: glitch buttons on mobile
This commit is contained in:
Julia Kirschenheuter 2023-12-22 17:00:24 +01:00 committed by GitHub
commit 7608ef23e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 5 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -62,7 +62,7 @@
<template #icon>
<Plus />
</template>
<template v-if="!isMobile">
<template v-if="!isMobile" #default>
{{ t('photos', 'Add to album') }}
</template>
</NcButton>
@ -73,7 +73,7 @@
<template #icon>
<Close />
</template>
<template v-if="!isMobile">
<template v-if="!isMobile" #default>
{{ t('photos', 'Unselect all') }}
</template>
</NcButton>
@ -127,7 +127,9 @@
<NcModal v-if="showAlbumCreationForm"
key="albumCreationForm"
@close="showAlbumCreationForm = false">
<h2 class="timeline__heading">{{ t('photos', 'New album') }}</h2>
<h2 class="timeline__heading">
{{ t('photos', 'New album') }}
</h2>
<AlbumForm @done="showAlbumCreationForm = false" />
</NcModal>