From ab304d4251870f73986e979bec3318ca326f29c4 Mon Sep 17 00:00:00 2001 From: Anton Tranelis <31516529+antontranelis@users.noreply.github.com> Date: Wed, 11 Jun 2025 10:13:16 +0200 Subject: [PATCH] fix(source): gallery lightbox fix (#238) * 3.0.97 * 3.0.98 * 3.0.99 * fix lightbox z-index --- src/assets/css/gallery.css | 3 +++ src/css.tsx | 1 + 2 files changed, 4 insertions(+) create mode 100644 src/assets/css/gallery.css diff --git a/src/assets/css/gallery.css b/src/assets/css/gallery.css new file mode 100644 index 00000000..6b593f7a --- /dev/null +++ b/src/assets/css/gallery.css @@ -0,0 +1,3 @@ +.yarl__portal_open { + z-index: 10050; +} \ No newline at end of file diff --git a/src/css.tsx b/src/css.tsx index 993b2ddf..572f5e51 100644 --- a/src/css.tsx +++ b/src/css.tsx @@ -15,3 +15,4 @@ import '#assets/css/leaflet.css' import '#assets/css/color-picker.css' import '#assets/css/markdown.css' import '#assets/css/tiptap.css' +import '#assets/css/gallery.css'