mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
Fix modal backdrop animation
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user