123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .tui-swipeout-wrap {
- background: #fff;
- position: relative;
- overflow: hidden;
- }
- .swipe-action-show{
- position: relative;
- z-index: 99990
- }
- .tui-swipeout-item {
- width: 100%;
- /* padding: 15px 20px; */
- box-sizing: border-box;
- transition: transform 0.2s ease;
- font-size: 14px;
- }
- .tui-swipeout-content {
- white-space: nowrap;
- overflow: hidden;
- }
- .tui-swipeout-button-right-group {
- position: absolute;
- right: -100%;
- top: 0;
- height: 100%;
- z-index: 1;
- width: 100%;
- }
- .tui-swipeout-button-right-item {
- height: 100%;
- float: left;
- white-space: nowrap;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- }
- .swipe-action_mask {
- display: block;
- opacity: 0;
- position: fixed;
- z-index: 999;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
|