index.wxss 412 B

1234567891011121314151617181920212223
  1. .wux-ellipsis {
  2. overflow: hidden;
  3. line-height: 1.5
  4. }
  5. .wux-ellipsis--container {
  6. position: fixed;
  7. left: -9999PX;
  8. top: -9999PX;
  9. z-index: -1000;
  10. height: auto;
  11. min-height: auto;
  12. max-height: auto;
  13. text-overflow: clip;
  14. white-space: normal;
  15. -webkit-line-clamp: unset;
  16. display: block
  17. }
  18. .wux-ellipsis__collapsed,
  19. .wux-ellipsis__expanded {
  20. display: inline;
  21. color: #387ef5;
  22. cursor: pointer
  23. }