ellipsis.scss 470 B

12345678910111213141516171819202122
  1. @mixin ellipsis {
  2. // overflow: hidden;
  3. text-overflow: ellipsis;
  4. white-space: nowrap;
  5. /* #ifndef UNI-APP-X && APP || APP-NVUE */
  6. word-wrap: normal;
  7. /* #endif */
  8. }
  9. @mixin ellipsisLn($line) {
  10. // overflow: hidden;
  11. text-overflow: ellipsis;
  12. /* #ifdef UNI-APP-X && APP || APP-NVUE */
  13. lines: $line;
  14. /* #endif */
  15. /* #ifndef UNI-APP-X && APP || APP-NVUE */
  16. -webkit-line-clamp: $line;
  17. display: -webkit-box;
  18. -webkit-box-orient: vertical;
  19. /* #endif */
  20. }