antd-mobile
Version:
基于 React 的移动设计规范实现
32 lines (30 loc) • 495 B
text/less
.@{PopupPrefixCls} {
&-wrap {
position: fixed;
overflow: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: @popupZIndex;
overflow-scrolling: touch;
outline: 0;
}
&-mask {
position: fixed;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: @fill-mask;
height: 100%;
z-index: @popupZIndex;
&-hidden {
display: none;
}
}
// 隐藏掉 dialog 默认的 x 按钮
&-close {
display: none;
}
}