_progress.scss 593 B

1234567891011121314151617181920212223242526272829303132333435
  1. .form-group {
  2. //position: relative;
  3. //@include clearfix();
  4. }
  5. .ajax-progress,
  6. .ajax-progress-throbber {
  7. position: absolute;
  8. right: 5px;
  9. bottom: 35px;
  10. width: 100%;
  11. text-align: right;
  12. display: inline-block;
  13. &:before {
  14. font-family: FontAwesome;
  15. content: '\f110';
  16. margin-right: 10px;
  17. -webkit-animation: fa-spin 2s infinite linear;
  18. animation: fa-spin 2s infinite linear;
  19. display: inline-block;
  20. }
  21. .message {
  22. display: none;
  23. }
  24. }
  25. .form-control.progress-disabled {
  26. float: none !important;
  27. }
  28. select.progress-disabled {
  29. float: none !important;
  30. }