NList.less 998 Bytes
.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;
  }
}