Merge remote-tracking branch 'origin/master' into ticket-app-master

This commit is contained in:
2025-06-20 12:53:20 +02:00
49 changed files with 7986 additions and 7490 deletions

View File

@@ -1,26 +1,26 @@
<template>
<a
class="btn"
:class="getClassButton"
:title="buttonTitle"
@click="openModal"
>
<span v-if="displayTextButton">{{ buttonTitle }}</span>
</a>
<teleport to="body">
<modal
v-if="showModal"
@close="closeModal"
:modal-dialog-class="modalDialogClass"
:show="showModal"
:hide-footer="false"
<a
class="btn"
:class="getClassButton"
:title="buttonTitle"
@click="openModal"
>
<template #header>
<h3 class="modal-title">
{{ modalTitle }}
</h3>
</template>
<span v-if="displayTextButton">{{ buttonTitle }}</span>
</a>
<teleport to="body">
<modal
v-if="showModal"
@close="closeModal"
:modal-dialog-class="modalDialogClass"
:show="showModal"
:hide-footer="false"
>
<template #header>
<h3 class="modal-title">
{{ modalTitle }}
</h3>
</template>
<template #body-head>
<div class="modal-body">
@@ -437,9 +437,9 @@ defineExpose({
<style lang="scss">
li.add-persons {
a {
cursor: pointer;
}
a {
cursor: pointer;
}
}
div.body-head {
overflow-y: unset;
@@ -480,7 +480,7 @@ div.body-head {
}
}
.create-button > a {
margin-top: 0.5em;
margin-left: 2.6em;
margin-top: 0.5em;
margin-left: 2.6em;
}
</style>