util.less 358 B

123456789101112131415161718
  1. .ellipsis() {
  2. width: auto;
  3. overflow: hidden;
  4. text-overflow: ellipsis;
  5. white-space: nowrap;
  6. }
  7. .background(@start: #ffffff, @end: #000000) {
  8. background: @end;
  9. background-image: -webkit-gradient(
  10. linear,
  11. left top,
  12. left bottom,
  13. from(@start),
  14. to(@end)
  15. ); /* Saf4+, Chrome */
  16. background-image: linear-gradient(@start, @end);
  17. }