jquery-ui.structure.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*!
  2. * jQuery UI CSS Framework 1.11.4
  3. * http://jqueryui.com
  4. *
  5. * Copyright jQuery Foundation and other contributors
  6. * Released under the MIT license.
  7. * http://jquery.org/license
  8. *
  9. * http://api.jqueryui.com/category/theming/
  10. */
  11. /* Layout helpers
  12. ----------------------------------*/
  13. .ui-helper-hidden {
  14. display: none;
  15. }
  16. .ui-helper-hidden-accessible {
  17. border: 0;
  18. clip: rect(0 0 0 0);
  19. height: 1px;
  20. margin: -1px;
  21. overflow: hidden;
  22. padding: 0;
  23. position: absolute;
  24. width: 1px;
  25. }
  26. .ui-helper-reset {
  27. margin: 0;
  28. padding: 0;
  29. border: 0;
  30. outline: 0;
  31. line-height: 1.3;
  32. text-decoration: none;
  33. font-size: 100%;
  34. list-style: none;
  35. }
  36. .ui-helper-clearfix:before,
  37. .ui-helper-clearfix:after {
  38. content: "";
  39. display: table;
  40. border-collapse: collapse;
  41. }
  42. .ui-helper-clearfix:after {
  43. clear: both;
  44. }
  45. .ui-helper-clearfix {
  46. min-height: 0; /* support: IE7 */
  47. }
  48. .ui-helper-zfix {
  49. width: 100%;
  50. height: 100%;
  51. top: 0;
  52. left: 0;
  53. position: absolute;
  54. opacity: 0;
  55. filter:Alpha(Opacity=0); /* support: IE8 */
  56. }
  57. .ui-front {
  58. z-index: 100;
  59. }
  60. /* Interaction Cues
  61. ----------------------------------*/
  62. .ui-state-disabled {
  63. cursor: default !important;
  64. }
  65. /* Icons
  66. ----------------------------------*/
  67. /* states and images */
  68. .ui-icon {
  69. display: block;
  70. text-indent: -99999px;
  71. overflow: hidden;
  72. background-repeat: no-repeat;
  73. }
  74. /* Misc visuals
  75. ----------------------------------*/
  76. /* Overlays */
  77. .ui-widget-overlay {
  78. position: fixed;
  79. top: 0;
  80. left: 0;
  81. width: 100%;
  82. height: 100%;
  83. }
  84. .ui-autocomplete {
  85. position: absolute;
  86. top: 0;
  87. left: 0;
  88. cursor: default;
  89. }
  90. .ui-menu {
  91. list-style: none;
  92. padding: 0;
  93. margin: 0;
  94. display: block;
  95. outline: none;
  96. }
  97. .ui-menu .ui-menu {
  98. position: absolute;
  99. }
  100. .ui-menu .ui-menu-item {
  101. position: relative;
  102. margin: 0;
  103. padding: 3px 1em 3px .4em;
  104. cursor: pointer;
  105. min-height: 0; /* support: IE7 */
  106. /* support: IE10, see #8844 */
  107. list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
  108. }
  109. .ui-menu .ui-menu-divider {
  110. margin: 5px 0;
  111. height: 0;
  112. font-size: 0;
  113. line-height: 0;
  114. border-width: 1px 0 0 0;
  115. }
  116. .ui-menu .ui-state-focus,
  117. .ui-menu .ui-state-active {
  118. margin: -1px;
  119. }
  120. /* icon support */
  121. .ui-menu-icons {
  122. position: relative;
  123. }
  124. .ui-menu-icons .ui-menu-item {
  125. padding-left: 2em;
  126. }
  127. /* left-aligned */
  128. .ui-menu .ui-icon {
  129. position: absolute;
  130. top: 0;
  131. bottom: 0;
  132. left: .2em;
  133. margin: auto 0;
  134. }
  135. /* right-aligned */
  136. .ui-menu .ui-menu-icon {
  137. left: auto;
  138. right: 0;
  139. }