Fix modal backdrop animation

This commit is contained in:
Yura
2021-11-02 18:13:12 +01:00
committed by Yura Bondarenko
parent 75c0bf7b61
commit dbbb19e37f

View File

@@ -59,3 +59,18 @@ ds-admin-sidebar {
display: none;
}
}
ngb-modal-backdrop {
// ng-bootsrap animates opacity, causing the fully opaque background to flash briefly before the transition starts
// animating background-color between transparent & a RGBA color instead looks smoother
&.fade {
opacity: 1 !important;
background-color: transparent;
transition: background-color 0.15s linear;
&.show {
background-color: rgba(0, 0, 0, 0.5);
}
}
}