index.less 378 Bytes
Newer Older
niko's avatar
niko committed
1
.ellipsis {
2
  overflow: hidden;
niko's avatar
niko committed
3 4 5 6 7 8 9
  display: inline-block;
  word-break: break-all;
}

.lines {
  position: relative;
  .shadow {
10 11
    display: block;
    position: relative;
niko's avatar
niko committed
12 13 14 15 16 17
    color: transparent;
    opacity: 0;
    z-index: -999;
  }
}

18 19 20 21 22 23
.lineClamp {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
niko's avatar
niko committed
24
}