Skip to content
Merged
Changes from 1 commit
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
Next Next commit
show title and close of modal inline
Signed-off-by: Simon L <szaimen@e.mail.de>
  • Loading branch information
szaimen authored and backportbot-nextcloud[bot] committed Dec 6, 2023
commit 61c9498628939a93e28878c88e8d7250682f62e6
11 changes: 7 additions & 4 deletions src/views/Timeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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;

Expand Down