NList.less
998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
.wev-comp-NList .wev-table-view-cell > a:not(.wev-btn) {
transition: all 0.3s;
}
.wev-comp-NList .wev-table-checkbox i.wev-multi-check {
animation: nlist-selectbtn-fadein 0.3s;
}
@-webkit-keyframes nlist-selectbtn-fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.wev-nlist-selectable-btn{
box-shadow: 0 0 10px rgba(0,0,0,0.1);
position: absolute;
z-index: 2;
bottom: 0;
left: 0;
right: 0;
width: 100%;
background-color: #fafafa;
display: none;
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
}
.wev-nlist-selectable-btn.in{
animation: nlist-selectbtn-bottomin 0.3s;
}
.wev-nlist-selectable-btn.out{
animation: nlist-selectbtn-bottomout 0.3s;
}
@-webkit-keyframes nlist-selectbtn-bottomin {
0% {
height: 0px;
opacity: 0;
}
100% {
height: 54px;
opacity: 1;
}
}
@-webkit-keyframes nlist-selectbtn-bottomout {
0% {
height: 54px;
opacity: 0;
}
100% {
height: 0px;
opacity: 1;
}
}