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.

jquery-ui.structure.css 2.8 KiB

4 vuotta sitten
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. .ui-draggable-handle {
  12. -ms-touch-action: none;
  13. touch-action: none;
  14. }
  15. /* Layout helpers
  16. ----------------------------------*/
  17. .ui-helper-hidden {
  18. display: none;
  19. }
  20. .ui-helper-hidden-accessible {
  21. border: 0;
  22. clip: rect(0 0 0 0);
  23. height: 1px;
  24. margin: -1px;
  25. overflow: hidden;
  26. padding: 0;
  27. position: absolute;
  28. width: 1px;
  29. }
  30. .ui-helper-reset {
  31. margin: 0;
  32. padding: 0;
  33. border: 0;
  34. outline: 0;
  35. line-height: 1.3;
  36. text-decoration: none;
  37. font-size: 100%;
  38. list-style: none;
  39. }
  40. .ui-helper-clearfix:before,
  41. .ui-helper-clearfix:after {
  42. content: "";
  43. display: table;
  44. border-collapse: collapse;
  45. }
  46. .ui-helper-clearfix:after {
  47. clear: both;
  48. }
  49. .ui-helper-zfix {
  50. width: 100%;
  51. height: 100%;
  52. top: 0;
  53. left: 0;
  54. position: absolute;
  55. opacity: 0;
  56. filter:Alpha(Opacity=0); /* support: IE8 */
  57. }
  58. .ui-front {
  59. z-index: 100;
  60. }
  61. /* Interaction Cues
  62. ----------------------------------*/
  63. .ui-state-disabled {
  64. cursor: default !important;
  65. pointer-events: none;
  66. }
  67. /* Icons
  68. ----------------------------------*/
  69. .ui-icon {
  70. display: inline-block;
  71. vertical-align: middle;
  72. margin-top: -.25em;
  73. position: relative;
  74. text-indent: -99999px;
  75. overflow: hidden;
  76. background-repeat: no-repeat;
  77. }
  78. .ui-widget-icon-block {
  79. left: 50%;
  80. margin-left: -8px;
  81. display: block;
  82. }
  83. /* Misc visuals
  84. ----------------------------------*/
  85. /* Overlays */
  86. .ui-widget-overlay {
  87. position: fixed;
  88. top: 0;
  89. left: 0;
  90. width: 100%;
  91. height: 100%;
  92. }
  93. .ui-resizable {
  94. position: relative;
  95. }
  96. .ui-resizable-handle {
  97. position: absolute;
  98. font-size: 0.1px;
  99. display: block;
  100. -ms-touch-action: none;
  101. touch-action: none;
  102. }
  103. .ui-resizable-disabled .ui-resizable-handle,
  104. .ui-resizable-autohide .ui-resizable-handle {
  105. display: none;
  106. }
  107. .ui-resizable-n {
  108. cursor: n-resize;
  109. height: 7px;
  110. width: 100%;
  111. top: -5px;
  112. left: 0;
  113. }
  114. .ui-resizable-s {
  115. cursor: s-resize;
  116. height: 7px;
  117. width: 100%;
  118. bottom: -5px;
  119. left: 0;
  120. }
  121. .ui-resizable-e {
  122. cursor: e-resize;
  123. width: 7px;
  124. right: -5px;
  125. top: 0;
  126. height: 100%;
  127. }
  128. .ui-resizable-w {
  129. cursor: w-resize;
  130. width: 7px;
  131. left: -5px;
  132. top: 0;
  133. height: 100%;
  134. }
  135. .ui-resizable-se {
  136. cursor: se-resize;
  137. width: 12px;
  138. height: 12px;
  139. right: 1px;
  140. bottom: 1px;
  141. }
  142. .ui-resizable-sw {
  143. cursor: sw-resize;
  144. width: 9px;
  145. height: 9px;
  146. left: -5px;
  147. bottom: -5px;
  148. }
  149. .ui-resizable-nw {
  150. cursor: nw-resize;
  151. width: 9px;
  152. height: 9px;
  153. left: -5px;
  154. top: -5px;
  155. }
  156. .ui-resizable-ne {
  157. cursor: ne-resize;
  158. width: 9px;
  159. height: 9px;
  160. right: -5px;
  161. top: -5px;
  162. }
  163. .ui-selectable {
  164. -ms-touch-action: none;
  165. touch-action: none;
  166. }
  167. .ui-selectable-helper {
  168. position: absolute;
  169. z-index: 100;
  170. border: 1px dotted black;
  171. }
  172. .ui-sortable-handle {
  173. -ms-touch-action: none;
  174. touch-action: none;
  175. }