Skip to content

Commit 9ed80d2

Browse files
committed
fix: talk modal z-index
Signed-off-by: Grigory V <scratchx@gmx.com>
1 parent 9610258 commit 9ed80d2

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

css/app-modal.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
h2 {
1616
margin: 0;
1717
}
18-
18+
1919
}
2020

2121
fieldset {
2222
padding: calc(var(--default-grid-baseline) * 4) 0;
2323

2424
header {
2525

26-
h3 {
26+
h3 {
2727
font-size: 20px;
2828
font-weight: 600;
2929
margin: var(--default-grid-baseline) 0;
@@ -72,6 +72,10 @@
7272
}
7373
}
7474

75+
.modal-mask.add-talk-modal {
76+
z-index: 10000 !important;
77+
}
78+
7579
.app-config-modal-confirmation {
7680
.empty-content {
7781
margin-top: 0 !important;

src/components/Editor/AddTalkModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<template>
77
<NcModal
88
size="small"
9-
class="modal"
9+
class="modal add-talk-modal"
1010
:name="t('calendar', 'Select a Talk Room')"
1111
@close="$emit('close', $event)">
1212
<div class="modal-content">

0 commit comments

Comments
 (0)