You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
593 B

  1. .ui.tab {
  2. display: none;
  3. }
  4. .ui.tab.active,
  5. .ui.tab.open {
  6. display: block;
  7. }
  8. .ui.tab.loading {
  9. position: relative;
  10. overflow: hidden;
  11. display: block;
  12. min-height: 250px;
  13. text-indent: -10000px;
  14. }
  15. .ui.tab.loading * {
  16. position: relative!important;
  17. left: -10000px!important;
  18. }
  19. .ui.tab.loading:after {
  20. position: absolute;
  21. top: 50px;
  22. left: 50%;
  23. content: 'Loading...';
  24. margin-left: -32px;
  25. text-indent: 5px;
  26. color: rgba(0,0,0,.4);
  27. width: 100%;
  28. height: 100%;
  29. padding-top: 75px;
  30. background: url(../images/loader-large.gif) no-repeat 0 0;
  31. visibility: visible;
  32. }