Fix side actions on template editor z-index issue
This commit is contained in:
parent
501a7175e8
commit
1be8e8e8f9
|
@ -135,7 +135,7 @@
|
||||||
<!-- <ng-template matStepLabel>{{'DATASET-PROFILE-EDITOR.STEPS.GENERAL-INFO.TITLE' | translate}}
|
<!-- <ng-template matStepLabel>{{'DATASET-PROFILE-EDITOR.STEPS.GENERAL-INFO.TITLE' | translate}}
|
||||||
</ng-template> -->
|
</ng-template> -->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3" style="display: flex; height: 40vh;">
|
<div class="col-3 side-actions">
|
||||||
<ng-container *ngTemplateOutlet="actions">
|
<ng-container *ngTemplateOutlet="actions">
|
||||||
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
|
@ -346,7 +346,7 @@ $blue-color-light: #5cf7f2;
|
||||||
background: #f4f4f4;
|
background: #f4f4f4;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0.01em;
|
top: 0.01em;
|
||||||
z-index: 99;
|
z-index: 9999;
|
||||||
}
|
}
|
||||||
|
|
||||||
#title-column{
|
#title-column{
|
||||||
|
@ -354,3 +354,9 @@ $blue-color-light: #5cf7f2;
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
padding-right: 15px;
|
padding-right: 15px;
|
||||||
}
|
}
|
||||||
|
.side-actions{
|
||||||
|
display: flex;
|
||||||
|
height: 40vh;
|
||||||
|
position: sticky;
|
||||||
|
top: 2em;
|
||||||
|
}
|
Loading…
Reference in New Issue