explorer: fix modal backdrop z-index (#21499)
This commit is contained in:
parent
2be859d304
commit
d637371882
|
@ -32,10 +32,7 @@ export function ClusterModal() {
|
|||
|
||||
return (
|
||||
<>
|
||||
<div
|
||||
className={`offcanvas offcanvas-end${show ? " show" : ""}`}
|
||||
onClick={onClose}
|
||||
>
|
||||
<div className={`offcanvas offcanvas-end${show ? " show" : ""}`}>
|
||||
<div className="modal-body" onClick={(e) => e.stopPropagation()}>
|
||||
<span className="c-pointer" onClick={onClose}>
|
||||
×
|
||||
|
|
|
@ -76,6 +76,8 @@ ul.log-messages {
|
|||
|
||||
.offcanvas {
|
||||
visibility: visible;
|
||||
// Bootstrap 5.1 updates modal-backdrop to a higher z-index
|
||||
z-index: 1060;
|
||||
}
|
||||
|
||||
.c-pointer {
|
||||
|
|
Loading…
Reference in New Issue