mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-03 03:10:44 -04:00
[web] Avoid scrollable page behind the modal dialog
This commit is contained in:
parent
c377ae3a64
commit
8f627f1df0
@ -8,7 +8,7 @@
|
|||||||
<p v-if="title" class="title is-4" v-text="title" />
|
<p v-if="title" class="title is-4" v-text="title" />
|
||||||
<slot name="modal-content" />
|
<slot name="modal-content" />
|
||||||
</div>
|
</div>
|
||||||
<footer class="card-footer is-clipped">
|
<footer class="card-footer">
|
||||||
<a class="card-footer-item has-text-dark" @click="$emit('close')">
|
<a class="card-footer-item has-text-dark" @click="$emit('close')">
|
||||||
<mdicon class="icon" name="cancel" size="16" />
|
<mdicon class="icon" name="cancel" size="16" />
|
||||||
<span class="is-size-7" v-text="close_action" />
|
<span class="is-size-7" v-text="close_action" />
|
||||||
@ -51,8 +51,16 @@ export default {
|
|||||||
show: Boolean,
|
show: Boolean,
|
||||||
title: { required: true, type: String }
|
title: { required: true, type: String }
|
||||||
},
|
},
|
||||||
emits: ['delete', 'close', 'ok']
|
emits: ['delete', 'close', 'ok'],
|
||||||
|
watch: {
|
||||||
|
show() {
|
||||||
|
const { classList } = document.querySelector('html')
|
||||||
|
if (this.show) {
|
||||||
|
classList.add('is-clipped')
|
||||||
|
} else {
|
||||||
|
classList.remove('is-clipped')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style></style>
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user