Skip to content

Commit 93ec289

Browse files
authored
Merge pull request #664 from sg00dwin/catalog-overlay-zindex
Set z-index to 1040 (same as .modal-backdrop), but will still appear …
2 parents 494b6e8 + 18a0c5a commit 93ec289

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

dist/less/overlay-panel.less

+2-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ body.overlay-open {
147147
position: fixed;
148148
right: 0;
149149
top: 0;
150-
z-index: @zindex-modal;
150+
// Set z-index to 1040 (same as .modal-backdrop), but will still appear above .modal-backdrop because of markup structure. This enables the uib-modal background to overlay the catalog wizard modal, when both are displayed.
151+
z-index: @zindex-modal-background;
151152
&.ng-enter {
152153
animation: modalSlideDown 0.3s ease-out forwards;
153154
}

dist/origin-web-catalogs.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/styles/overlay-panel.less

+2-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ body.overlay-open {
147147
position: fixed;
148148
right: 0;
149149
top: 0;
150-
z-index: @zindex-modal;
150+
// Set z-index to 1040 (same as .modal-backdrop), but will still appear above .modal-backdrop because of markup structure. This enables the uib-modal background to overlay the catalog wizard modal, when both are displayed.
151+
z-index: @zindex-modal-background;
151152
&.ng-enter {
152153
animation: modalSlideDown 0.3s ease-out forwards;
153154
}

0 commit comments

Comments
 (0)