pleroma-fe/src/components/confirm_modal/confirm_modal.vue
Henry Jameson 210b1f5ee4 confirm swag
2026-06-10 18:41:01 +03:00

74 lines
1.3 KiB
Vue

<template>
<DialogModal
v-body-scroll-lock="true"
class="confirm-modal"
@cancel="onCancel"
>
<template #header>
<span v-text="title" />
</template>
<div class="content">
<FAIcon
icon="circle-question"
size="3x"
fixed-width
/>
<div class="text">
<slot />
</div>
</div>
<div class="below">
<slot name="below" />
</div>
<template #footer>
<slot name="footerLeft" />
<button
class="btn button-default"
:class="{ '-danger': confirmDanger }"
@click.prevent="onAccept"
v-text="confirmText"
/>
<button
class="btn button-default"
@click.prevent="onCancel"
v-text="cancelText"
/>
</template>
</DialogModal>
</template>
<script src="./confirm_modal.js"></script>
<style lang="scss">
.confirm-modal {
.content {
display: flex;
align-items: center;
text-align: left;
justify-content: center;
line-height: 1.5;
p {
margin: 0.75em;
margin-right: 0;
&:first-child {
margin-top: 0;
}
&:last-child {
margin-bottom: 0;
}
}
}
.below:not(:empty) {
margin-top: 1em;
}
.text {
max-width: 50ch;
}
}
</style>