jquery-ui.custom.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /*! jQuery UI - v1.11.2 - 2014-10-28
  2. * http://jqueryui.com
  3. * Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, slider.css
  4. * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
  5. /* Layout helpers
  6. ----------------------------------*/
  7. .ui-helper-hidden {
  8. display: none;
  9. }
  10. .ui-helper-hidden-accessible {
  11. border: 0;
  12. clip: rect(0 0 0 0);
  13. height: 1px;
  14. margin: -1px;
  15. overflow: hidden;
  16. padding: 0;
  17. position: absolute;
  18. width: 1px;
  19. }
  20. .ui-helper-reset {
  21. margin: 0;
  22. padding: 0;
  23. border: 0;
  24. outline: 0;
  25. line-height: 1.3;
  26. text-decoration: none;
  27. font-size: 100%;
  28. list-style: none;
  29. }
  30. .ui-helper-clearfix:before,
  31. .ui-helper-clearfix:after {
  32. content: "";
  33. display: table;
  34. border-collapse: collapse;
  35. }
  36. .ui-helper-clearfix:after {
  37. clear: both;
  38. }
  39. .ui-helper-clearfix {
  40. min-height: 0; /* support: IE7 */
  41. }
  42. .ui-helper-zfix {
  43. width: 100%;
  44. height: 100%;
  45. top: 0;
  46. left: 0;
  47. position: absolute;
  48. opacity: 0;
  49. filter:Alpha(Opacity=0); /* support: IE8 */
  50. }
  51. .ui-front {
  52. z-index: 100;
  53. }
  54. /* Interaction Cues
  55. ----------------------------------*/
  56. .ui-state-disabled {
  57. cursor: default !important;
  58. }
  59. /* Icons
  60. ----------------------------------*/
  61. /* states and images */
  62. .ui-icon {
  63. display: block;
  64. text-indent: -99999px;
  65. overflow: hidden;
  66. background-repeat: no-repeat;
  67. }
  68. /* Misc visuals
  69. ----------------------------------*/
  70. /* Overlays */
  71. .ui-widget-overlay {
  72. position: fixed;
  73. top: 0;
  74. left: 0;
  75. width: 100%;
  76. height: 100%;
  77. }
  78. .ui-draggable-handle {
  79. -ms-touch-action: none;
  80. touch-action: none;
  81. }
  82. .ui-resizable {
  83. position: relative;
  84. }
  85. .ui-resizable-handle {
  86. position: absolute;
  87. font-size: 0.1px;
  88. display: block;
  89. -ms-touch-action: none;
  90. touch-action: none;
  91. }
  92. .ui-resizable-disabled .ui-resizable-handle,
  93. .ui-resizable-autohide .ui-resizable-handle {
  94. display: none;
  95. }
  96. .ui-resizable-n {
  97. cursor: n-resize;
  98. height: 7px;
  99. width: 100%;
  100. top: -5px;
  101. left: 0;
  102. }
  103. .ui-resizable-s {
  104. cursor: s-resize;
  105. height: 7px;
  106. width: 100%;
  107. bottom: -5px;
  108. left: 0;
  109. }
  110. .ui-resizable-e {
  111. cursor: e-resize;
  112. width: 7px;
  113. right: -5px;
  114. top: 0;
  115. height: 100%;
  116. }
  117. .ui-resizable-w {
  118. cursor: w-resize;
  119. width: 7px;
  120. left: -5px;
  121. top: 0;
  122. height: 100%;
  123. }
  124. .ui-resizable-se {
  125. cursor: se-resize;
  126. width: 12px;
  127. height: 12px;
  128. right: 1px;
  129. bottom: 1px;
  130. }
  131. .ui-resizable-sw {
  132. cursor: sw-resize;
  133. width: 9px;
  134. height: 9px;
  135. left: -5px;
  136. bottom: -5px;
  137. }
  138. .ui-resizable-nw {
  139. cursor: nw-resize;
  140. width: 9px;
  141. height: 9px;
  142. left: -5px;
  143. top: -5px;
  144. }
  145. .ui-resizable-ne {
  146. cursor: ne-resize;
  147. width: 9px;
  148. height: 9px;
  149. right: -5px;
  150. top: -5px;
  151. }
  152. .ui-selectable {
  153. -ms-touch-action: none;
  154. touch-action: none;
  155. }
  156. .ui-selectable-helper {
  157. position: absolute;
  158. z-index: 100;
  159. border: 1px dotted black;
  160. }
  161. .ui-sortable-handle {
  162. -ms-touch-action: none;
  163. touch-action: none;
  164. }
  165. .ui-slider {
  166. position: relative;
  167. text-align: left;
  168. }
  169. .ui-slider .ui-slider-handle {
  170. position: absolute;
  171. z-index: 2;
  172. width: 1.2em;
  173. height: 1.2em;
  174. cursor: default;
  175. -ms-touch-action: none;
  176. touch-action: none;
  177. }
  178. .ui-slider .ui-slider-range {
  179. position: absolute;
  180. z-index: 1;
  181. font-size: .7em;
  182. display: block;
  183. border: 0;
  184. background-position: 0 0;
  185. }
  186. /* support: IE8 - See #6727 */
  187. .ui-slider.ui-state-disabled .ui-slider-handle,
  188. .ui-slider.ui-state-disabled .ui-slider-range {
  189. filter: inherit;
  190. }
  191. .ui-slider-horizontal {
  192. height: .8em;
  193. }
  194. .ui-slider-horizontal .ui-slider-handle {
  195. top: -.3em;
  196. margin-left: -.6em;
  197. }
  198. .ui-slider-horizontal .ui-slider-range {
  199. top: 0;
  200. height: 100%;
  201. }
  202. .ui-slider-horizontal .ui-slider-range-min {
  203. left: 0;
  204. }
  205. .ui-slider-horizontal .ui-slider-range-max {
  206. right: 0;
  207. }
  208. .ui-slider-vertical {
  209. width: .8em;
  210. height: 100px;
  211. }
  212. .ui-slider-vertical .ui-slider-handle {
  213. left: -.3em;
  214. margin-left: 0;
  215. margin-bottom: -.6em;
  216. }
  217. .ui-slider-vertical .ui-slider-range {
  218. left: 0;
  219. width: 100%;
  220. }
  221. .ui-slider-vertical .ui-slider-range-min {
  222. bottom: 0;
  223. }
  224. .ui-slider-vertical .ui-slider-range-max {
  225. top: 0;
  226. }