Skip to content

Commit

Permalink
Move the infinite overlay to the same source order as regular o… (#7923)
Browse files Browse the repository at this point in the history
  • Loading branch information
BatJan authored Apr 10, 2020
1 parent 421d7ac commit 3e9c759
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.umb-editors {
.absolute();
overflow: hidden;
z-index: 7500;

.umb-editor {
box-shadow: 0px 0 30px 0 rgba(0,0,0,.3);
Expand Down Expand Up @@ -104,4 +105,4 @@
i {
margin-right:5px;
}
}
}
8 changes: 3 additions & 5 deletions src/Umbraco.Web.UI/Umbraco/Views/Default.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,7 @@
<section id="contentwrapper">

<div id="contentcolumn">

<div class="umb-editor" ng-view></div>
<div class="umb-editor__overlay" ng-if="infiniteMode"></div>

<umb-editors></umb-editors>
</div>

</section>
Expand All @@ -93,7 +89,7 @@

</div>

<umb-backdrop ng-if="backdrop.show"
<umb-backdrop ng-if="backdrop.show || infiniteMode"
backdrop-opacity="backdrop.opacity"
highlight-element="backdrop.element"
highlight-prevent-click="backdrop.elementPreventClick"
Expand All @@ -107,6 +103,8 @@
parent-scope="overlay.parentScope">
</umb-overlay>

<umb-editors ng-show="infiniteMode"></umb-editors>

<umb-login
ng-if="login.show"
on-login="hideLoginScreen()">
Expand Down

0 comments on commit 3e9c759

Please sign in to comment.