You are here

bynder.throbber.css in Bynder 8.3

bynder.throbber.css Styles for throbber that is used in Bynder Entit Browser widgets.

File

css/bynder.throbber.css
View source
  1. /**
  2. * @file bynder.throbber.css
  3. * Styles for throbber that is used in Bynder Entit Browser widgets.
  4. */
  5. .overlay-throbber {
  6. background: #000000;
  7. background: rgba(0, 0, 0, 0.85);
  8. bottom: 0;
  9. height: 100%;
  10. left: 0;
  11. position: fixed;
  12. right: 0;
  13. top: 0;
  14. width: 100%;
  15. z-index: 1000;
  16. }
  17. .overlay-throbber .throbber-spinner {
  18. background: #232323 url(../images/loading-small.gif) center center no-repeat;
  19. border-radius: 7px;
  20. height: 24px;
  21. left: 50%;
  22. padding: 4px;
  23. position: fixed;
  24. top: 50%;
  25. transform: translate(-50%, -50%);
  26. width: 24px;
  27. }