From 9922eec5b0c3af9cea70062412518eb97d883369 Mon Sep 17 00:00:00 2001 From: Keegan George Date: Wed, 27 Nov 2024 17:46:43 -0800 Subject: [PATCH] FIX: Suggestion menus not showing in mobile The suggestion menu z-index was not enough for mobile so it isn't being shown when it's used in `modalForMobile` bottom menus. --- .../stylesheets/modules/ai-helper/common/ai-helper.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assets/stylesheets/modules/ai-helper/common/ai-helper.scss b/assets/stylesheets/modules/ai-helper/common/ai-helper.scss index ff0acfc16..362e40497 100644 --- a/assets/stylesheets/modules/ai-helper/common/ai-helper.scss +++ b/assets/stylesheets/modules/ai-helper/common/ai-helper.scss @@ -234,6 +234,14 @@ z-index: z("composer", "dropdown"); } +.mobile-view { + .ai-category-suggester-content, + .ai-tag-suggester-content, + .ai-title-suggester-content { + z-index: z("modal", "dropdown"); + } +} + .ai-category-suggester-content { .category-row { padding: 0.25em 0.5em;