You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
754 B
45 lines
754 B
.wux-swipe {
|
|
overflow: hidden;
|
|
position: relative
|
|
}
|
|
.wux-swipe__cover {
|
|
position: absolute;
|
|
z-index: 2;
|
|
background: 0 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0
|
|
}
|
|
.wux-swipe__actions {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
transition: all .25s
|
|
}
|
|
.wux-swipe__actions--left {
|
|
left: 0
|
|
}
|
|
.wux-swipe__actions--right {
|
|
right: 0
|
|
}
|
|
.wux-swipe__action {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden
|
|
}
|
|
.wux-swipe__text {
|
|
padding: 0 16rpx
|
|
}
|
|
.wux-swipe__content {
|
|
position: relative;
|
|
background-color: #fff;
|
|
transition: all .25s
|
|
}
|
|
.wux-swipe--swiping .wux-swipe__actions,
|
|
.wux-swipe--swiping .wux-swipe__content {
|
|
transition: none
|
|
}
|