_history.less 997 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .command-button {
  2. &.undo, &.redo {
  3. float: left;
  4. border: none;
  5. width: @panel-height;
  6. height: @panel-height;
  7. line-height: @panel-height;
  8. padding: 0;
  9. margin: 0;
  10. .fui-label {
  11. display: none;
  12. }
  13. .fui-icon {
  14. display: block;
  15. width: @panel-height;
  16. height: @panel-height;
  17. background: url(../images/history.png) no-repeat;
  18. }
  19. &:hover {
  20. background: @tab-hover;
  21. .fui-icon {
  22. background-position-y: -40px;
  23. }
  24. }
  25. &:active {
  26. background: @tab-active;
  27. }
  28. &.fui-disabled {
  29. &:hover, &:active {
  30. background: none;
  31. }
  32. .fui-icon {
  33. background-position-y: 0;
  34. }
  35. }
  36. }
  37. &.undo {
  38. }
  39. &.redo {
  40. .fui-icon {
  41. background-position-x: -40px;
  42. }
  43. }
  44. }