mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-12-01 02:36:35 +00:00
c61513f0ea
Bug: T165036 Change-Id: I916f27138b5abe6b9fe23719cffb10f20e604b89
16 lines
294 B
Plaintext
16 lines
294 B
Plaintext
.mwe-popups-overlay {
|
|
background-color: rgba( 255, 255, 255, 0.9 );
|
|
z-index: 999;
|
|
position: fixed;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
// flexbox to vertically/horizontally center children
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|