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.

63 lines
1.1 KiB

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