Skip to content

Commit 65bf577

Browse files
authored
Fix images overlaying AI assistant modal (#1240)
1 parent 460a2e1 commit 65bf577

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/css/custom.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,13 @@ html[data-theme="dark"] .container img[src$=".png"] { /* Adds a white background
362362
background-color: #ffffff;
363363
}
364364

365+
img[class^="img_"] { /* Ensure doc images are always behind overlays and dropdowns. */
366+
position: relative;
367+
z-index: 1 !important;
368+
}
369+
365370
.medium-zoom-overlay {
366-
z-index: 15;
371+
z-index: 1;
367372
position: fixed;
368373
}
369374

0 commit comments

Comments
 (0)