From 3e5a5525f0bf8f1d5c6553346944fa668ff90d30 Mon Sep 17 00:00:00 2001 From: Osama Sayegh Date: Tue, 3 Feb 2026 13:07:51 +0300 Subject: [PATCH] FIX: Remove unnecessary z-index from lazy video containers (#37467) The `.lazy-video-container` element had a `z-index: z("base")` that was creating an unnecessary stacking context. This caused embedded videos in the review queue (and possibly other places) to render above dropdown menus, obscuring the menu options. It appears that the `z-index` property was added when we merged the `yt-lazy` plugin into the (current) generic plugin `discourse-lazy-videos`, but the property doesn't seem to be actually needed anymore. Internal topic: t/173510. --- .../discourse-lazy-videos/assets/stylesheets/lazy-videos.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/discourse-lazy-videos/assets/stylesheets/lazy-videos.scss b/plugins/discourse-lazy-videos/assets/stylesheets/lazy-videos.scss index 893e21c4b96..4e5934d4df2 100644 --- a/plugins/discourse-lazy-videos/assets/stylesheets/lazy-videos.scss +++ b/plugins/discourse-lazy-videos/assets/stylesheets/lazy-videos.scss @@ -1,5 +1,4 @@ .lazy-video-container { - z-index: z("base"); position: relative; display: block; height: 0;