layout.less 1004 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .readjust-layout {
  2. display: inline-block;
  3. vertical-align: middle;
  4. padding: 0 10px 0 5px;
  5. border-right: 1px dashed #eee;
  6. }
  7. .btn-icon {
  8. width: 25px;
  9. height: 25px;
  10. margin-left: 12px;
  11. display: block;
  12. }
  13. .btn-label {
  14. font-size: 12px;
  15. }
  16. .btn-wrap {
  17. width: 50px;
  18. height: 42px;
  19. cursor: pointer;
  20. display: inline-block;
  21. text-decoration: none;
  22. &[disabled] span {
  23. opacity: 0.5;
  24. }
  25. &[disabled] {
  26. cursor: default;
  27. }
  28. &[disabled]:hover {
  29. background-color: transparent;
  30. }
  31. &[disabled]:active {
  32. background-color: transparent;
  33. }
  34. &:link {
  35. text-decoration: none;
  36. }
  37. &:visited {
  38. text-decoration: none;
  39. }
  40. &:hover {
  41. background-color: @tool-hover;
  42. text-decoration: none;
  43. }
  44. &:active {
  45. background-color: @tool-active;
  46. }
  47. }
  48. .reset-layout-icon {
  49. background: url(images/icons.png) no-repeat;
  50. background-position: 0 -150px;
  51. }