[FIX] web_responsive: app-menu-container hides open mail chat windows - #3640
Open
jp-sft wants to merge 1 commit into
Open
[FIX] web_responsive: app-menu-container hides open mail chat windows#3640jp-sft wants to merge 1 commit into
jp-sft wants to merge 1 commit into
Conversation
.app-menu-container (apps grid overlay) used z-index: 1024 !important, which is higher than mail's .o-mail-ChatWindow z-index ($zindex-sticky, 1020 in Bootstrap 5's default scale). Both are `position: fixed` panels that span overlapping screen regions, so opening the apps grid always painted the fixed z-index:1024 overlay on top of any already-open chat window, hiding it completely. Lower the overlay's z-index to just below $zindex-sticky so it still sits above ordinary page content and dropdowns, but no longer covers chat windows (or any other sticky-tier UI at the same level). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BoYMgd2neGjAAx8N2xwYur
Contributor
CristianoMafraJunior
suggested changes
Aug 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bug
.app-menu-container(the full-screen apps grid overlay,apps_menu.scss) setsz-index: 1024 !important. Mail's.o-mail-ChatWindow(coremailmodule) usesz-index: $zindex-sticky, which is1020in Bootstrap 5's default z-index scale.Both elements are
position: fixedpanels that span overlapping regions of the viewport (the apps grid covers the full width from just below the navbar down; chat windows are anchoredfixed-bottom). Since1024 > 1020, opening the apps grid always paints over any already-open chat window, hiding it completely for as long as the apps grid stays open.Fix
Lower
.app-menu-container'sz-indexto$zindex-sticky - 1(1019), so it still sits comfortably above ordinary page content, dropdowns ($zindex-dropdown= 1000) and this module's own.o_searchview_autocomplete(999), but no longer covers.o-mail-ChatWindowor anything else at the sticky tier.To reproduce (before fix)
🤖 Generated with Claude Code
https://claude.ai/code/session_01BoYMgd2neGjAAx8N2xwYur