@jdcfe/yep-react
Version:
一套移动端的React组件库
114 lines (102 loc) • 1.95 kB
CSS
.Yep-popover__trigger {
cursor: pointer;
user-select: none;
}
.Yep-popover__trigger--disabled,
.Yep-popover__trigger--disabled * {
background-color: #eceff1 ;
border-color: #eaeaea ;
cursor: not-allowed ;
color: #999 ;
user-select: none;
}
.Yep-popover {
position: absolute;
left: 0;
top: 0;
z-index: 9999;
}
.Yep-popover:after {
content: "";
position: absolute;
width: 0;
height: 0;
}
.Yep-popover--animation {
animation: Yep-popover 0.15s;
}
@keyframes Yep-popover {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.Yep-popover--up {
padding-bottom: 7px;
margin-top: -7px;
}
.Yep-popover--up:after {
left: 50%;
bottom: 1px;
margin-left: -7px;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 6px solid #fff;
}
.Yep-popover--down {
padding-top: 7px;
}
.Yep-popover--down:after {
left: 50%;
top: 1px;
margin-left: -7px;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 6px solid #fff;
}
.Yep-popover--left {
padding-right: 7px;
}
.Yep-popover--left:after {
top: 50%;
right: 1px;
margin-top: -7px;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-left: 6px solid #fff;
}
.Yep-popover--right {
padding-left: 7px;
}
.Yep-popover--right:after {
top: 50%;
left: 1px;
margin-top: -7px;
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-right: 6px solid #fff;
}
.Yep-popover--align-left:after {
left: 27px;
}
.Yep-popover--align-right:after {
left: auto;
right: 27px;
}
.Yep-popover--align-top:after {
top: 27px;
}
.Yep-popover--align-bottom:after {
top: auto;
bottom: 27px;
}
.Yep-popover__content {
padding: 10px 12px;
background: #fff;
border-radius: 2px;
word-wrap: break-word;
box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
overflow: auto;
}