Skip to content

Commit 581ea65

Browse files
authored
fix: fix scroll container regions z-index issues (#264)
This fix is meant to isolate scroll container regions from each other, this is needed to prevent z-index wars between elements in different regions. With this change, every element in a scroll container region (no matter how high it's z-index is) won't compete with elements form other regions (and the region itself)
1 parent 9a2a8d6 commit 581ea65

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

packages/atlas-core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- We fixed an issue with sidebar menu not overlaying some elements in modern client.
12+
913
## [3.18.2] Atlas Core - 2025-8-7
1014

1115
### Fixed

packages/atlas-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "atlas-core",
33
"moduleName": "Atlas Core",
4-
"version": "3.18.2",
4+
"version": "3.18.3",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2024. All rights reserved.",
77
"repository": {

packages/atlas/src/themesource/atlas_core/web/core/widgets/_scroll-container-react.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@
192192
&:not(.mx-scrollcontainer-nested) {
193193
-webkit-overflow-scrolling: touch;
194194
}
195+
isolation: isolate;
195196
}
196197

197198
// for push aside and slide over the main part should be non-interactive if sidebar is open

0 commit comments

Comments
 (0)