* added 'icon' property for popups
All checks were successful
continuous-integration/drone/push Build is passing
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:
@@ -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>
|
||||
Reference in New Issue
Block a user