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