buttons.less 572 B

123456789101112131415161718192021222324252627282930313233343536
  1. .btn-reset() {
  2. border-top: none;
  3. border-bottom: none;
  4. border-left: none;
  5. border-right: none;
  6. background: transparent;
  7. font-family: inherit;
  8. cursor: pointer;
  9. &:focus {
  10. border-image: none;
  11. outline: none;
  12. }
  13. }
  14. .ajax-button() {
  15. .button-loader, .button-loading {
  16. .loader();
  17. display: none;
  18. .loading-dot {
  19. width: 7px;
  20. height: 7px;
  21. margin: 0px 3px;
  22. display: inline;
  23. }
  24. }
  25. &.syncing {
  26. .button-loader, .button-loading {
  27. display: inline-block;
  28. }
  29. .button-text {
  30. display: none;
  31. }
  32. }
  33. }