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

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

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