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.

39 lines
749 B

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