@import url(../var.less);

@text-ellipsis-prefix: ~"@{prefix}text-ellipsis";

.@{text-ellipsis-prefix}{
  &-limit-text {
    word-break: break-all;
    white-space: normal;
  }
  .link {
      color: @primary-color;
      cursor: pointer;
      text-decoration: none;
      outline: none;
      transition: color .2s ease
  }

  .link:hover {
    color: fade(@primary-color, 80%)
  }

  .link:active {
    color: fade(@primary-color, 60%)
  }

  .link:active,.link:hover {
      outline: 0;
      text-decoration: none
  }

  .link[disabled] {
      color: #999;
      cursor: default
  }
}