{}">
@@ -41,6 +41,11 @@ export default defineComponent({
},
position: {
required: false
+ },
+ front: {
+ type: Boolean,
+ required: false,
+ default: false,
}
},
emits: ['opening', 'click', 'esc', 'close', 'closed'],
@@ -224,14 +229,14 @@ export default defineComponent({
}
}
-.mk-modal {
+.qzhlnise {
> .bg {
- z-index: 20000;
+ z-index: 10000;
}
> .content:not(.popup) {
position: fixed;
- z-index: 20000;
+ z-index: 10000;
top: 0;
bottom: 0;
left: 0;
@@ -265,11 +270,25 @@ export default defineComponent({
> .content.popup {
position: absolute;
- z-index: 20000;
+ z-index: 10000;
&.fixed {
position: fixed;
}
}
+
+ &.front {
+ > .bg {
+ z-index: 20000;
+ }
+
+ > .content:not(.popup) {
+ z-index: 20000;
+ }
+
+ > .content.popup {
+ z-index: 20000;
+ }
+ }
}