jquery-ui.structure.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*!
  2. * jQuery UI CSS Framework 1.12.1
  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-zfix {
  46. width: 100%;
  47. height: 100%;
  48. top: 0;
  49. left: 0;
  50. position: absolute;
  51. opacity: 0;
  52. filter:Alpha(Opacity=0); /* support: IE8 */
  53. }
  54. .ui-front {
  55. z-index: 100;
  56. }
  57. /* Interaction Cues
  58. ----------------------------------*/
  59. .ui-state-disabled {
  60. cursor: default !important;
  61. pointer-events: none;
  62. }
  63. /* Icons
  64. ----------------------------------*/
  65. .ui-icon {
  66. display: inline-block;
  67. vertical-align: middle;
  68. margin-top: -.25em;
  69. position: relative;
  70. text-indent: -99999px;
  71. overflow: hidden;
  72. background-repeat: no-repeat;
  73. }
  74. .ui-widget-icon-block {
  75. left: 50%;
  76. margin-left: -8px;
  77. display: block;
  78. }
  79. /* Misc visuals
  80. ----------------------------------*/
  81. /* Overlays */
  82. .ui-widget-overlay {
  83. position: fixed;
  84. top: 0;
  85. left: 0;
  86. width: 100%;
  87. height: 100%;
  88. }
  89. .ui-autocomplete {
  90. position: absolute;
  91. top: 0;
  92. left: 0;
  93. cursor: default;
  94. }
  95. .ui-menu {
  96. list-style: none;
  97. padding: 0;
  98. margin: 0;
  99. display: block;
  100. outline: 0;
  101. }
  102. .ui-menu .ui-menu {
  103. position: absolute;
  104. }
  105. .ui-menu .ui-menu-item {
  106. margin: 0;
  107. cursor: pointer;
  108. /* support: IE10, see #8844 */
  109. list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
  110. }
  111. .ui-menu .ui-menu-item-wrapper {
  112. position: relative;
  113. padding: 3px 1em 3px .4em;
  114. }
  115. .ui-menu .ui-menu-divider {
  116. margin: 5px 0;
  117. height: 0;
  118. font-size: 0;
  119. line-height: 0;
  120. border-width: 1px 0 0 0;
  121. }
  122. .ui-menu .ui-state-focus,
  123. .ui-menu .ui-state-active {
  124. margin: -1px;
  125. }
  126. /* icon support */
  127. .ui-menu-icons {
  128. position: relative;
  129. }
  130. .ui-menu-icons .ui-menu-item-wrapper {
  131. padding-left: 2em;
  132. }
  133. /* left-aligned */
  134. .ui-menu .ui-icon {
  135. position: absolute;
  136. top: 0;
  137. bottom: 0;
  138. left: .2em;
  139. margin: auto 0;
  140. }
  141. /* right-aligned */
  142. .ui-menu .ui-menu-icon {
  143. left: auto;
  144. right: 0;
  145. }