author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 18:28:13 +0200 | |
changeset 9 | 177826044cd9 |
parent 7 | cf61fcea0001 |
child 16 | a86126ab1dd4 |
permissions | -rw-r--r-- |
0 | 1 |
/*! |
5 | 2 |
* jQuery UI CSS Framework 1.11.4 |
0 | 3 |
* http://jqueryui.com |
4 |
* |
|
5 | 5 |
* Copyright jQuery Foundation and other contributors |
0 | 6 |
* Released under the MIT license. |
7 |
* http://jquery.org/license |
|
8 |
* |
|
5 | 9 |
* http://api.jqueryui.com/category/theming/ |
0 | 10 |
*/ |
11 |
||
12 |
/* Layout helpers |
|
13 |
----------------------------------*/ |
|
14 |
.ui-helper-hidden { |
|
15 |
display: none; |
|
16 |
} |
|
17 |
.ui-helper-hidden-accessible { |
|
18 |
border: 0; |
|
19 |
clip: rect(0 0 0 0); |
|
20 |
height: 1px; |
|
21 |
margin: -1px; |
|
22 |
overflow: hidden; |
|
23 |
padding: 0; |
|
24 |
position: absolute; |
|
25 |
width: 1px; |
|
26 |
} |
|
27 |
.ui-helper-reset { |
|
28 |
margin: 0; |
|
29 |
padding: 0; |
|
30 |
border: 0; |
|
31 |
outline: 0; |
|
32 |
line-height: 1.3; |
|
33 |
text-decoration: none; |
|
34 |
font-size: 100%; |
|
35 |
list-style: none; |
|
36 |
} |
|
37 |
.ui-helper-clearfix:before, |
|
38 |
.ui-helper-clearfix:after { |
|
39 |
content: ""; |
|
40 |
display: table; |
|
41 |
border-collapse: collapse; |
|
42 |
} |
|
43 |
.ui-helper-clearfix:after { |
|
44 |
clear: both; |
|
45 |
} |
|
46 |
.ui-helper-clearfix { |
|
47 |
min-height: 0; /* support: IE7 */ |
|
48 |
} |
|
49 |
.ui-helper-zfix { |
|
50 |
width: 100%; |
|
51 |
height: 100%; |
|
52 |
top: 0; |
|
53 |
left: 0; |
|
54 |
position: absolute; |
|
55 |
opacity: 0; |
|
5 | 56 |
filter:Alpha(Opacity=0); /* support: IE8 */ |
0 | 57 |
} |
58 |
||
59 |
.ui-front { |
|
60 |
z-index: 100; |
|
61 |
} |
|
62 |
||
63 |
||
64 |
/* Interaction Cues |
|
65 |
----------------------------------*/ |
|
66 |
.ui-state-disabled { |
|
67 |
cursor: default !important; |
|
68 |
} |
|
69 |
||
70 |
||
71 |
/* Icons |
|
72 |
----------------------------------*/ |
|
73 |
||
74 |
/* states and images */ |
|
75 |
.ui-icon { |
|
76 |
display: block; |
|
77 |
text-indent: -99999px; |
|
78 |
overflow: hidden; |
|
79 |
background-repeat: no-repeat; |
|
80 |
} |
|
81 |
||
82 |
||
83 |
/* Misc visuals |
|
84 |
----------------------------------*/ |
|
85 |
||
86 |
/* Overlays */ |
|
87 |
.ui-widget-overlay { |
|
88 |
position: fixed; |
|
89 |
top: 0; |
|
90 |
left: 0; |
|
91 |
width: 100%; |
|
92 |
height: 100%; |
|
93 |
} |
|
94 |
||
95 |
/*! |
|
5 | 96 |
* jQuery UI Resizable 1.11.4 |
0 | 97 |
* http://jqueryui.com |
98 |
* |
|
5 | 99 |
* Copyright jQuery Foundation and other contributors |
0 | 100 |
* Released under the MIT license. |
101 |
* http://jquery.org/license |
|
102 |
*/ |
|
103 |
.ui-resizable { |
|
104 |
position: relative; |
|
105 |
} |
|
106 |
.ui-resizable-handle { |
|
107 |
position: absolute; |
|
108 |
font-size: 0.1px; |
|
109 |
display: block; |
|
5 | 110 |
touch-action: none; |
0 | 111 |
} |
112 |
.ui-resizable-disabled .ui-resizable-handle, |
|
113 |
.ui-resizable-autohide .ui-resizable-handle { |
|
114 |
display: none; |
|
115 |
} |
|
116 |
.ui-resizable-n { |
|
117 |
cursor: n-resize; |
|
118 |
height: 7px; |
|
119 |
width: 100%; |
|
120 |
top: -5px; |
|
121 |
left: 0; |
|
122 |
} |
|
123 |
.ui-resizable-s { |
|
124 |
cursor: s-resize; |
|
125 |
height: 7px; |
|
126 |
width: 100%; |
|
127 |
bottom: -5px; |
|
128 |
left: 0; |
|
129 |
} |
|
5 | 130 |
/* rtl:ignore */ |
0 | 131 |
.ui-resizable-e { |
132 |
cursor: e-resize; |
|
133 |
width: 7px; |
|
134 |
right: -5px; |
|
135 |
top: 0; |
|
136 |
height: 100%; |
|
137 |
} |
|
5 | 138 |
/* rtl:ignore */ |
0 | 139 |
.ui-resizable-w { |
140 |
cursor: w-resize; |
|
141 |
width: 7px; |
|
142 |
left: -5px; |
|
143 |
top: 0; |
|
144 |
height: 100%; |
|
145 |
} |
|
5 | 146 |
/* rtl:ignore */ |
0 | 147 |
.ui-resizable-se { |
148 |
cursor: se-resize; |
|
149 |
width: 12px; |
|
150 |
height: 12px; |
|
151 |
right: 1px; |
|
152 |
bottom: 1px; |
|
153 |
} |
|
5 | 154 |
/* rtl:ignore */ |
0 | 155 |
.ui-resizable-sw { |
156 |
cursor: sw-resize; |
|
157 |
width: 9px; |
|
158 |
height: 9px; |
|
159 |
left: -5px; |
|
160 |
bottom: -5px; |
|
161 |
} |
|
5 | 162 |
/* rtl:ignore */ |
0 | 163 |
.ui-resizable-nw { |
164 |
cursor: nw-resize; |
|
165 |
width: 9px; |
|
166 |
height: 9px; |
|
167 |
left: -5px; |
|
168 |
top: -5px; |
|
169 |
} |
|
5 | 170 |
/* rtl:ignore */ |
0 | 171 |
.ui-resizable-ne { |
172 |
cursor: ne-resize; |
|
173 |
width: 9px; |
|
174 |
height: 9px; |
|
175 |
right: -5px; |
|
176 |
top: -5px; |
|
177 |
} |
|
178 |
||
5 | 179 |
/* WP buttons: see buttons.css. */ |
180 |
||
181 |
.ui-button { |
|
182 |
display: inline-block; |
|
183 |
text-decoration: none; |
|
184 |
font-size: 13px; |
|
185 |
line-height: 26px; |
|
186 |
height: 28px; |
|
187 |
margin: 0; |
|
188 |
padding: 0 10px 1px; |
|
189 |
cursor: pointer; |
|
190 |
border-width: 1px; |
|
191 |
border-style: solid; |
|
192 |
-webkit-appearance: none; |
|
193 |
border-radius: 3px; |
|
194 |
white-space: nowrap; |
|
195 |
box-sizing: border-box; |
|
196 |
color: #555; |
|
197 |
border-color: #cccccc; |
|
198 |
background: #f7f7f7; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
199 |
box-shadow: 0 1px 0 #cccccc; |
9 | 200 |
vertical-align: top; |
5 | 201 |
} |
202 |
||
203 |
.ui-button:active, |
|
204 |
.ui-button:focus { |
|
205 |
outline: none; |
|
206 |
} |
|
207 |
||
208 |
/* Remove the dotted border on :focus and the extra padding in Firefox */ |
|
209 |
.ui-button::-moz-focus-inner { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
210 |
border-width: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
211 |
border-style: none; |
5 | 212 |
padding: 0; |
213 |
} |
|
214 |
||
215 |
.ui-button:hover, |
|
216 |
.ui-button:focus { |
|
217 |
background: #fafafa; |
|
218 |
border-color: #999; |
|
219 |
color: #23282d; |
|
220 |
} |
|
221 |
||
222 |
.ui-button:focus { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
223 |
border-color: #5b9dd9; |
9 | 224 |
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8); |
5 | 225 |
} |
226 |
||
227 |
.ui-button:active { |
|
228 |
background: #eee; |
|
229 |
border-color: #999; |
|
9 | 230 |
box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
231 |
transform: translateY(1px); |
5 | 232 |
} |
233 |
||
234 |
.ui-button[disabled], |
|
235 |
.ui-button:disabled { |
|
236 |
color: #a0a5aa !important; |
|
237 |
border-color: #ddd !important; |
|
238 |
background: #f7f7f7 !important; |
|
239 |
box-shadow: none !important; |
|
240 |
text-shadow: 0 1px 0 #fff !important; |
|
241 |
cursor: default; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
242 |
transform: none !important; |
5 | 243 |
} |
244 |
||
9 | 245 |
@media screen and (max-width: 782px) { |
5 | 246 |
|
247 |
.ui-button { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
248 |
padding: 6px 14px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
249 |
line-height: normal; |
5 | 250 |
font-size: 14px; |
251 |
vertical-align: middle; |
|
252 |
height: auto; |
|
253 |
margin-bottom: 4px; |
|
254 |
} |
|
255 |
||
256 |
} |
|
257 |
||
258 |
/* WP Theme */ |
|
259 |
||
0 | 260 |
.ui-dialog { |
261 |
position: absolute; |
|
262 |
top: 0; |
|
263 |
left: 0; |
|
5 | 264 |
z-index: 100102; |
265 |
background-color: #fff; |
|
9 | 266 |
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); |
0 | 267 |
} |
5 | 268 |
|
269 |
.ui-dialog-titlebar { |
|
270 |
background: #fcfcfc; |
|
271 |
border-bottom: 1px solid #dfdfdf; |
|
272 |
height: 36px; |
|
273 |
font-size: 18px; |
|
274 |
font-weight: 600; |
|
275 |
line-height: 36px; |
|
276 |
padding: 0 36px 0 16px; |
|
0 | 277 |
} |
5 | 278 |
|
279 |
.ui-button.ui-dialog-titlebar-close { |
|
280 |
background: none; |
|
281 |
border: none; |
|
282 |
box-shadow: none; |
|
283 |
color: #666; |
|
284 |
cursor: pointer; |
|
285 |
display: block; |
|
286 |
padding: 0; |
|
0 | 287 |
position: absolute; |
5 | 288 |
top: 0; |
289 |
right: 0; |
|
290 |
width: 36px; |
|
291 |
height: 36px; |
|
292 |
text-align: center; |
|
0 | 293 |
} |
5 | 294 |
|
295 |
.ui-dialog-titlebar-close:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
296 |
font: normal 20px/1 dashicons; |
5 | 297 |
vertical-align: top; |
298 |
speak: none; |
|
299 |
-webkit-font-smoothing: antialiased; |
|
300 |
-moz-osx-font-smoothing: grayscale; |
|
301 |
line-height: 36px; |
|
302 |
width: 36px; |
|
303 |
height: 36px; |
|
9 | 304 |
content: "\f158"; |
5 | 305 |
} |
306 |
||
307 |
.ui-button.ui-dialog-titlebar-close:hover { |
|
308 |
color: #00a0d2; |
|
309 |
} |
|
310 |
||
311 |
.ui-dialog-titlebar-close .ui-button-text { |
|
312 |
display: none; |
|
313 |
} |
|
314 |
||
315 |
.ui-dialog-content { |
|
316 |
padding: 16px; |
|
0 | 317 |
overflow: auto; |
318 |
} |
|
5 | 319 |
|
320 |
.ui-dialog-buttonpane { |
|
321 |
background: #fcfcfc; |
|
322 |
border-top: 1px solid #dfdfdf; |
|
323 |
padding: 16px; |
|
0 | 324 |
} |
5 | 325 |
|
326 |
.ui-dialog-buttonpane .ui-button { |
|
327 |
margin-left: 16px; |
|
328 |
} |
|
329 |
||
330 |
.ui-dialog-buttonpane .ui-dialog-buttonset { |
|
0 | 331 |
float: right; |
332 |
} |
|
5 | 333 |
|
0 | 334 |
.ui-draggable .ui-dialog-titlebar { |
335 |
cursor: move; |
|
336 |
} |
|
337 |
||
5 | 338 |
.ui-widget-overlay { |
339 |
position: fixed; |
|
340 |
top: 0; |
|
341 |
left: 0; |
|
342 |
right: 0; |
|
343 |
bottom: 0; |
|
344 |
min-height: 360px; |
|
345 |
background: #000; |
|
346 |
opacity: 0.7; |
|
347 |
filter: alpha(opacity=70); |
|
348 |
z-index: 100101; |
|
0 | 349 |
} |