Skip to content

Commit 89eb58f

Browse files
committed
Fix: Reduce z-index for some elements to prevent conflicts with embedded calendar popup
Signed-off-by: Kostiantyn Miakshyn <molodchick@gmail.com>
1 parent 5e3d60c commit 89eb58f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/components/CollectiveContainer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ export default {
240240
/* Format page title in PageContainer.vue and PageVersion.vue */
241241
.page-title {
242242
position: relative;
243-
z-index: 10022;
243+
z-index: 9001;
244244
padding: 0 8px;
245245
}
246246

src/components/Page/PageInfoBar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ page-info-bar {
150150
top: 0;
151151
bottom: var(--default-grid-baseline);
152152
width: var(--text-editor-max-width, var(--text-editor-max-width-default));
153-
z-index: 10021;
153+
z-index: 9000;
154154
background-color: var(--color-main-background-translucent);
155155
backdrop-filter: var(--background-blur);
156156
height: var(--default-clickable-area);

src/css/editor.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
--text-editor-max-width: calc(100% - 2 * 40px);
1212
}
1313

14+
.text-menubar {
15+
z-index: 9000 !important;
16+
}
17+
1418
.sheet-view {
1519
&.landing-page-widgets,
1620
.page-heading-skeleton,
@@ -34,7 +38,7 @@
3438
border-radius: var(--border-radius-large);
3539
box-shadow: 0 1px 10px var(--color-box-shadow);
3640
background-color: var(--color-main-background);
37-
z-index: 10021;
41+
z-index: 9000;
3842
}
3943

4044
@media print {

0 commit comments

Comments
 (0)