Compare commits

...

No commits in common. "486b964baee9b77c89492817ec65a71c7ae29520" and "5546299efdd03d99cf51815e778d9c20bafdb69f" have entirely different histories.

8 changed files with 8 additions and 5 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -22,7 +22,7 @@
<template>
<NcContent app-name="photos">
<NcAppNavigation>
<NcAppNavigation :aria-label="t('photos', 'Photos')">
<template #list>
<NcAppNavigationItem :to="{name: 'all_media'}"
:name="t('photos', 'All media')"

View File

@ -126,16 +126,13 @@
<NcModal v-if="showAlbumCreationForm"
key="albumCreationForm"
:close-button-contained="false"
:name="t('photos', 'New album')"
@close="showAlbumCreationForm = false">
<h2 class="timeline__heading">{{ t('photos', 'New album') }}</h2>
<AlbumForm @done="showAlbumCreationForm = false" />
</NcModal>
<NcModal v-if="showAlbumPicker"
key="albumPicker"
:close-button-contained="false"
:name="t('photos', 'Add to album')"
@close="showAlbumPicker = false">
<AlbumPicker @album-picked="addSelectionToAlbum" />
</NcModal>
@ -306,6 +303,12 @@ export default {
}
}
&__heading {
padding: calc(var(--default-grid-baseline) * 4);
margin-bottom: 0px;
padding-bottom: 0px;
}
&__file-list {
padding: 0 64px;