2020-04-04 14:14:25 +00:00
|
|
|
<template>
|
|
|
|
<transition name="modal-fade">
|
|
|
|
<div class="modal-backdrop" @click="close">
|
2020-04-05 17:50:33 +00:00
|
|
|
<div
|
|
|
|
class="modal"
|
|
|
|
role="dialog"
|
|
|
|
aria-labelledby="modalTitle"
|
|
|
|
aria-describedby="modalDescription"
|
|
|
|
@click.stop=""
|
2020-04-04 14:14:25 +00:00
|
|
|
>
|
2020-04-15 20:40:58 +00:00
|
|
|
<font-awesome-icon @click="close" class="close" icon="times-circle" />
|
2020-04-04 14:14:25 +00:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</template>
|
2020-04-11 20:55:37 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
methods: {
|
|
|
|
close() {
|
|
|
|
this.$emit("close");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2020-04-04 15:25:11 +00:00
|
|
|
<style lang="scss">
|
2020-04-05 17:50:33 +00:00
|
|
|
.modal-backdrop {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
2020-04-04 14:14:25 +00:00
|
|
|
|
2020-04-05 17:50:33 +00:00
|
|
|
.modal {
|
|
|
|
background: rgba(0, 0, 0, 0.8);
|
|
|
|
padding: 10px 20px;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 2px 2px 20px 1px #000;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
max-width: 60%;
|
2020-04-04 15:25:11 +00:00
|
|
|
|
2020-04-10 15:48:20 +00:00
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-content: center;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 75%;
|
|
|
|
line-height: 100%;
|
|
|
|
}
|
2020-04-15 20:40:58 +00:00
|
|
|
> .close {
|
|
|
|
position: absolute;
|
|
|
|
right: 20px;
|
|
|
|
top: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
z-index: 5;
|
|
|
|
&:hover {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
}
|
2020-04-05 17:50:33 +00:00
|
|
|
}
|
2020-04-04 14:14:25 +00:00
|
|
|
|
2020-04-05 17:50:33 +00:00
|
|
|
.modal-fade-enter,
|
|
|
|
.modal-fade-leave-active {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2020-04-04 14:14:25 +00:00
|
|
|
|
2020-04-05 17:50:33 +00:00
|
|
|
.modal-fade-enter-active,
|
|
|
|
.modal-fade-leave-active {
|
|
|
|
transition: opacity 0.2s ease;
|
|
|
|
}
|
2020-04-04 14:14:25 +00:00
|
|
|
</style>
|