abp.less 514 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @import "abp.mixings.less";
  2. // COMMON STYLES //////////////////////////////////////////////////////////////
  3. .abp-clickable {
  4. cursor: pointer;
  5. }
  6. // Docking
  7. .abp-dock-top {
  8. .abp-dock(top);
  9. }
  10. .abp-dock-right {
  11. .abp-dock(right);
  12. }
  13. .abp-dock-bottom {
  14. .abp-dock(bottom);
  15. }
  16. .abp-dock-left {
  17. .abp-dock(left);
  18. }
  19. //Busy indicator
  20. .abp-busy-indicator {
  21. }
  22. .abp-busy-indicator-small {
  23. width: 36px;
  24. height: 36px;
  25. &.abp-dock-left,
  26. &.abp-dock-right {
  27. height: auto;
  28. }
  29. }