* added 'icon' property for popups
All checks were successful
continuous-integration/drone/push Build is passing

* show a popup after creating a share link for alum and box
* set min width to 320 px for sharing dialog
This commit is contained in:
Artem Anufrij
2023-02-19 20:56:03 +01:00
parent 77e835e33e
commit 19f221556a
5 changed files with 18 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
<template>
<DialogBase ref="dialogWindow" title="Shared items" button-text="close">
<div class="flex-column">
<div class="flex-column" id="sharedContent">
<ul v-if="shares.length > 0">
<li
class="flex-row pa4-top pa4-bottom"
@@ -21,7 +21,11 @@
<p class="grow ma-off">
{{ share.title }}
</p>
<button class="flat danger faded" @click="shareDisable(share)" title="Disable Sharing">
<button
class="flat danger faded"
@click="shareDisable(share)"
title="Disable Sharing"
>
<awesome-icon icon="trash-alt" />
</button>
</div>
@@ -107,4 +111,8 @@ li p {
li .cover {
width: 32px;
}
#sharedContent {
min-width: 320px;
}
</style>