Skip to content

Commit

Permalink
Fix navbar z-index (#16690)
Browse files Browse the repository at this point in the history
### What does it do?

The z-index is too high and prevents extras like ace/tinymce/commerce
modal and so on being on top.

### Why is it needed?

See #16684.

### How to test

Replace `manager/templates/default/css/index.css` with this [demo
file](https://gist.github.com/jenswittmann/9152010fe306121a2a810d2128211797).

---------

Co-authored-by: Jason Coward <[email protected]>
  • Loading branch information
jenswittmann and opengeek authored Jan 30, 2025
1 parent 34a3822 commit b5a3c49
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _build/templates/default/sass/_navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
background: $colorSplash;
max-width: $navbarWidth;
position: absolute;
z-index: 9999;
z-index: 2;
height: 100%;
}

Expand Down
2 changes: 1 addition & 1 deletion manager/templates/default/css/index-min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion manager/templates/default/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -23252,7 +23252,7 @@ ul.x-tab-strip-bottom .x-tab-left {
background: #234368;
max-width: 70px;
position: absolute;
z-index: 9999;
z-index: 2;
height: 100%;
}

Expand Down

0 comments on commit b5a3c49

Please sign in to comment.