fix confirmation modal overflows
This commit is contained in:
parent
86e1e6becf
commit
d3474e171e
|
@ -47,6 +47,9 @@ export default {
|
||||||
watch: {
|
watch: {
|
||||||
themeApplied (value) {
|
themeApplied (value) {
|
||||||
this.removeSplash()
|
this.removeSplash()
|
||||||
|
},
|
||||||
|
layoutType (value) {
|
||||||
|
document.getElementById('modal').classList = ['-' + this.layoutType]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
|
@ -54,6 +57,7 @@ export default {
|
||||||
const val = this.$store.getters.mergedConfig.interfaceLanguage
|
const val = this.$store.getters.mergedConfig.interfaceLanguage
|
||||||
this.$store.dispatch('setOption', { name: 'interfaceLanguage', value: val })
|
this.$store.dispatch('setOption', { name: 'interfaceLanguage', value: val })
|
||||||
window.addEventListener('resize', this.updateMobileState)
|
window.addEventListener('resize', this.updateMobileState)
|
||||||
|
document.getElementById('modal').classList = ['-' + this.layoutType]
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
if (this.$store.state.interface.themeApplied) {
|
if (this.$store.state.interface.themeApplied) {
|
||||||
|
|
|
@ -69,12 +69,41 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
border-top: 1px solid var(--border);
|
border-top: 1px solid var(--border);
|
||||||
display: flex;
|
display: grid;
|
||||||
justify-content: flex-end;
|
grid-gap: 0.5em;
|
||||||
|
grid-auto-columns: minmax(max-content, 1fr);
|
||||||
|
height: auto;
|
||||||
|
|
||||||
button {
|
button {
|
||||||
width: auto;
|
width: auto;
|
||||||
margin-left: 0.5rem;
|
padding-left: 2em;
|
||||||
|
padding-right: 2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#modal.-mobile {
|
||||||
|
.dialog-modal.panel {
|
||||||
|
top: auto;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
max-width: none;
|
||||||
|
transform: none;
|
||||||
|
width: 100vw;
|
||||||
|
margin: auto;
|
||||||
|
z-index: 2001;
|
||||||
|
|
||||||
|
.dialog-modal-footer {
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: flex-end;
|
||||||
|
grid-auto-columns: initial;
|
||||||
|
grid-auto-rows: 1fr;
|
||||||
|
|
||||||
|
button {
|
||||||
|
grid-column: 1;
|
||||||
|
height: 2em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue