Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

caret.less 684B

12345678910111213141516171819202122232425262728293031323334353637
  1. // sortable
  2. .sortable() {
  3. display: inline-block;
  4. width: 9px;
  5. height: 12px;
  6. margin-left: 4px;
  7. margin-top: -1px;
  8. vertical-align: middle;
  9. overflow: hidden;
  10. cursor: pointer;
  11. position: relative;
  12. i {
  13. display: block;
  14. height: 6px;
  15. line-height: 6px;
  16. overflow: hidden;
  17. position: absolute;
  18. color: @btn-disable-color;
  19. transition: color @transition-time @ease-in-out;
  20. &:hover{
  21. color: inherit;
  22. }
  23. &.on{
  24. color: @primary-color;
  25. }
  26. &:first-child{
  27. top: 0;
  28. }
  29. &:last-child{
  30. bottom: 0;
  31. }
  32. }
  33. }