@jdcfe/yep-react
Version:
一套移动端的React组件库
50 lines • 929 B
CSS
.Yep-swipe {
overflow: hidden;
position: relative;
}
.Yep-swipe-content {
position: relative;
background-color: #ffffff;
}
.Yep-swipe-cover {
position: absolute;
z-index: 2;
background: transparent;
height: 100%;
width: 100%;
top: 0;
display: none;
}
.Yep-swipe .Yep-swipe-content, .Yep-swipe .Yep-swipe-actions {
transition: all 250ms;
}
.Yep-swipe-swiping .Yep-swipe-swiping-content, .Yep-swipe-swiping .Yep-swipe-swiping-content {
transition: none;
}
.Yep-swipe-swiping .Yep-list-item-active {
background-color: #ffffff;
}
.Yep-swipe-actions {
position: absolute;
top: 0;
bottom: 0;
display: flex;
overflow: hidden;
white-space: nowrap;
}
.Yep-swipe-actions-left {
left: 0;
}
.Yep-swipe-actions-right {
right: 0;
}
.Yep-swipe-btn {
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.Yep-swipe-btn-text {
font-size: 28px;
padding: 0 16px;
}