Fixed z-index issue when saving organization
This commit is contained in:
@@ -19,9 +19,6 @@
|
|||||||
<msfa-footer class="msfa__footer"></msfa-footer>
|
<msfa-footer class="msfa__footer"></msfa-footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div class="msfa__loading-wrapper msfa__loading-wrapper--full-screen">
|
||||||
*ngIf="(userLoading$ | async) || (rolesLoading$ | async)"
|
|
||||||
class="msfa__loading-wrapper msfa__loading-wrapper--full-screen"
|
|
||||||
>
|
|
||||||
<digi-icon-spinner class="msfa__spinner"></digi-icon-spinner>
|
<digi-icon-spinner class="msfa__spinner"></digi-icon-spinner>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
@mixin msfa__backdrop() {
|
@mixin msfa__backdrop($zIndex: 0) {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
z-index: 0;
|
z-index: $zIndex;
|
||||||
background-color: rgba(255, 255, 255, 0.4);
|
background-color: rgba(255, 255, 255, 0.4);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,10 +78,9 @@ dl {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
z-index: 1000;
|
|
||||||
|
|
||||||
&--full-screen {
|
&--full-screen {
|
||||||
@include msfa__backdrop;
|
@include msfa__backdrop(1000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&__spinner {
|
&__spinner {
|
||||||
|
|||||||
Reference in New Issue
Block a user