27 lines
377 B
CSS
27 lines
377 B
CSS
#ui-modal-list {
|
|
position: relative;
|
|
}
|
|
.ui-modal-wrapper {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 200;
|
|
}
|
|
.ui-modal-close {
|
|
display: none;
|
|
}
|
|
.ui-modal-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
z-index: 201;
|
|
}
|
|
.ui-modal-content {
|
|
position: fixed;
|
|
z-index: 202;
|
|
} |