index.less 869 Bytes
Newer Older
niko's avatar
niko committed
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
.textOverflowMulti(@line: 3, @bg: #fff) {
  overflow: hidden;
  position: relative;
  line-height: 1.5em;
  max-height: @line * 1.5em;
  text-align: justify;
  margin-right: -1em;
  padding-right: 1em;
  &:before {
    background: @bg;
    box-shadow: 2px 0 2px 1px rgba(255, 255, 255, 0.2);
    content: '...';
    padding-left: 0;
    position: absolute;
    right: 14px;
    bottom: 0;
  }
  &:after {
    background: white;
    content: '';
    margin-top: 0.2em;
    position: absolute;
    right: 14px;
    width: 1em;
    height: 1em;
  }
}

.ellipsis {
  display: inline-block;
  word-break: break-all;
}

.lines {
  position: relative;
  .shadow {
    color: transparent;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 9999px;
    z-index: -999;
  }
}

.linesCover {
  .textOverflowMulti();
  display: block;
}