forked from platypush/platypush
Added close button to the modal's header.
This commit is contained in:
parent
8af3ae17b8
commit
59bf1c2aa0
1 changed files with 25 additions and 1 deletions
|
@ -2,7 +2,12 @@
|
||||||
<div class="modal-container fade-in" :id="id" :class="{hidden: !isVisible}" :style="{'--z-index': zIndex}" @click="close">
|
<div class="modal-container fade-in" :id="id" :class="{hidden: !isVisible}" :style="{'--z-index': zIndex}" @click="close">
|
||||||
<div class="modal" :class="$attrs.class">
|
<div class="modal" :class="$attrs.class">
|
||||||
<div class="content" :style="{'--width': width, '--height': height}" @click="$event.stopPropagation()">
|
<div class="content" :style="{'--width': width, '--height': height}" @click="$event.stopPropagation()">
|
||||||
<div class="header" v-text="title" v-if="title"></div>
|
<div class="header" v-if="title">
|
||||||
|
<div class="title" v-text="title" v-if="title" />
|
||||||
|
<button title="Close" alt="Close" @click="close">
|
||||||
|
<i class="fas fa-xmark" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
<div class="body">
|
<div class="body">
|
||||||
<slot @modal-close="close" />
|
<slot @modal-close="close" />
|
||||||
</div>
|
</div>
|
||||||
|
@ -145,6 +150,9 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
$icon-size: 1.5em;
|
||||||
|
$icon-margin: 0.5em;
|
||||||
|
|
||||||
.modal-container {
|
.modal-container {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -171,6 +179,7 @@ export default {
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
position: relative;
|
||||||
border-bottom: $modal-header-border;
|
border-bottom: $modal-header-border;
|
||||||
border-radius: 0.5em 0.5em 0 0;
|
border-radius: 0.5em 0.5em 0 0;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
|
@ -179,6 +188,21 @@ export default {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: $modal-header-bg;
|
background: $modal-header-bg;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
button {
|
||||||
|
width: $icon-size;
|
||||||
|
height: $icon-size;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
margin: auto $icon-margin;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
background: transparent;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $default-hover-fg;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.body {
|
.body {
|
||||||
|
|
Loading…
Reference in a new issue