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.

52 lines
1.0 KiB

  1. /*
  2. * # Semantic Button
  3. * http://github.com/quirkyinc/semantic
  4. *
  5. *
  6. * Copyright 2013 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. * Released: April 17 2013
  11. */
  12. /*******************************
  13. UI Tabs
  14. *******************************/
  15. .ui.tab {
  16. display: none;
  17. }
  18. .ui.tab.active,
  19. .ui.tab.open {
  20. display: block;
  21. }
  22. /*******************************
  23. States
  24. *******************************/
  25. /*--------------------
  26. Loading
  27. ---------------------*/
  28. .ui.tab.loading {
  29. position: relative;
  30. overflow: hidden;
  31. display: block;
  32. min-height: 250px;
  33. text-indent: -10000px;
  34. }
  35. .ui.tab.loading * {
  36. position: relative !important;
  37. left: -10000px !important;
  38. }
  39. .ui.tab.loading:after {
  40. position: absolute;
  41. top: 50px;
  42. left: 50%;
  43. content: 'Loading...';
  44. margin-left: -32px;
  45. text-indent: 5px;
  46. color: rgba(0, 0, 0, 0.4);
  47. width: 100%;
  48. height: 100%;
  49. padding-top: 75px;
  50. background: url(../images/loader-large.gif) no-repeat 0px 0px;
  51. visibility: visible;
  52. }