author | ymh <ymh.work@gmail.com> |
Tue, 22 Oct 2019 16:11:46 +0200 | |
changeset 15 | 3d4e9c994f10 |
parent 9 | 177826044cd9 |
child 16 | a86126ab1dd4 |
permissions | -rw-r--r-- |
5 | 1 |
/*------------------------------------------------------------------------------ |
2 |
16.0 - Themes |
|
3 |
------------------------------------------------------------------------------*/ |
|
4 |
||
5 |
||
6 |
/*------------------------------------------------------------------------------ |
|
7 |
16.1 - Manage Themes |
|
8 |
------------------------------------------------------------------------------*/ |
|
9 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
10 |
body.js .theme-browser.search-loading { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
11 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
12 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
13 |
|
5 | 14 |
.theme-browser .themes { |
15 |
clear: both; |
|
16 |
} |
|
17 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
18 |
.themes-php:not(.network-admin) .wrap h1 { |
5 | 19 |
margin-bottom: 15px; |
20 |
} |
|
21 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
22 |
.themes-php .wrap h1 .button { |
5 | 23 |
margin-right: 20px; |
24 |
} |
|
25 |
||
26 |
/* Search form */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
27 |
.themes-php .search-form { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
28 |
display: inline; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
29 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
30 |
|
5 | 31 |
.themes-php .wp-filter-search { |
32 |
position: relative; |
|
33 |
top: -2px; |
|
34 |
right: 20px; |
|
35 |
margin: 0; |
|
36 |
width: 280px; |
|
37 |
font-size: 16px; |
|
38 |
font-weight: 300; |
|
39 |
line-height: 1.5; |
|
40 |
} |
|
41 |
||
42 |
/* Position admin messages */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
43 |
.theme .notice, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
44 |
.theme .notice.is-dismissible { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
45 |
right: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
46 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
47 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
48 |
left: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
49 |
top: 0; |
5 | 50 |
} |
51 |
||
52 |
/** |
|
53 |
* Main theme element |
|
54 |
* (has flexible margins) |
|
55 |
*/ |
|
56 |
.theme-browser .theme { |
|
57 |
cursor: pointer; |
|
58 |
float: right; |
|
59 |
margin: 0 0 4% 4%; |
|
60 |
position: relative; |
|
61 |
width: 30.6%; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
62 |
border: 1px solid #ddd; |
9 | 63 |
box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1); |
5 | 64 |
box-sizing: border-box; |
65 |
} |
|
66 |
||
67 |
.ie8 .theme-browser .theme { |
|
68 |
width: 30%; |
|
69 |
margin: 0 0 4% 3%; |
|
70 |
} |
|
71 |
||
72 |
.theme-browser .theme:nth-child(3n) { |
|
73 |
margin-left: 0; |
|
74 |
} |
|
75 |
||
76 |
.theme-browser .theme:hover, |
|
77 |
.theme-browser .theme:focus { |
|
78 |
cursor: pointer; |
|
79 |
} |
|
80 |
||
81 |
.theme-browser .theme .theme-name { |
|
82 |
font-size: 15px; |
|
83 |
font-weight: 600; |
|
84 |
height: 18px; |
|
85 |
margin: 0; |
|
86 |
padding: 15px; |
|
9 | 87 |
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1); |
5 | 88 |
overflow: hidden; |
89 |
white-space: nowrap; |
|
90 |
text-overflow: ellipsis; |
|
91 |
background: #fff; |
|
9 | 92 |
background: rgba(255, 255, 255, 0.65); |
5 | 93 |
} |
94 |
||
95 |
/* Activate and Customize buttons, shown on hover and focus */ |
|
96 |
.theme-browser .theme .theme-actions { |
|
97 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; |
|
98 |
opacity: 0; |
|
99 |
transition: opacity 0.1s ease-in-out; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
height: auto; |
5 | 101 |
background: rgba(244, 244, 244, 0.7); |
9 | 102 |
border-right: 1px solid rgba(0, 0, 0, 0.05); |
5 | 103 |
} |
104 |
||
105 |
.theme-browser .theme:hover .theme-actions, |
|
106 |
.theme-browser .theme.focus .theme-actions, |
|
107 |
.theme-browser .theme:focus .theme-actions { |
|
108 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; |
|
109 |
opacity: 1; |
|
110 |
} |
|
111 |
||
112 |
.theme-browser .theme .theme-actions .button-primary { |
|
113 |
margin-left: 3px; |
|
114 |
} |
|
115 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
116 |
.theme-browser .theme .theme-actions .button { |
5 | 117 |
float: none; |
118 |
margin-right: 3px; |
|
119 |
} |
|
120 |
||
121 |
/** |
|
122 |
* Theme Screenshot |
|
123 |
* |
|
124 |
* Has a fixed aspect ratio of 1.5 to 1 regardless of screenshot size |
|
125 |
* It is also responsive. |
|
126 |
*/ |
|
127 |
.theme-browser .theme .theme-screenshot { |
|
128 |
display: block; |
|
129 |
overflow: hidden; |
|
130 |
position: relative; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
131 |
-webkit-backface-visibility: hidden; /* Prevents flicker of the screenshot on hover. */ |
5 | 132 |
transition: opacity 0.2s ease-in-out; |
133 |
} |
|
134 |
||
135 |
.theme-browser .theme .theme-screenshot:after { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
136 |
content: ""; |
5 | 137 |
display: block; |
138 |
padding-top: 66.66666%; /* using a 3/2 aspect ratio */ |
|
139 |
} |
|
140 |
||
141 |
.theme-browser .theme .theme-screenshot img { |
|
142 |
height: auto; |
|
143 |
position: absolute; |
|
144 |
right: 0; |
|
145 |
top: 0; |
|
146 |
width: 100%; |
|
147 |
transition: opacity 0.2s ease-in-out; |
|
148 |
} |
|
149 |
||
150 |
.theme-browser .theme:hover .theme-screenshot, |
|
151 |
.theme-browser .theme:focus .theme-screenshot { |
|
152 |
background: #fff; |
|
153 |
} |
|
154 |
||
155 |
.theme-browser.rendered .theme:hover .theme-screenshot img, |
|
156 |
.theme-browser.rendered .theme:focus .theme-screenshot img { |
|
157 |
opacity: 0.4; |
|
158 |
} |
|
159 |
||
160 |
.theme-browser .theme .more-details { |
|
161 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; |
|
162 |
opacity: 0; |
|
163 |
position: absolute; |
|
164 |
top: 35%; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
165 |
left: 20%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
166 |
right: 20%; |
5 | 167 |
background: #23282d; |
9 | 168 |
background: rgba(0, 0, 0, 0.7); |
5 | 169 |
color: #fff; |
170 |
font-size: 15px; |
|
9 | 171 |
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6); |
5 | 172 |
-webkit-font-smoothing: antialiased; |
173 |
font-weight: 600; |
|
174 |
padding: 15px 12px; |
|
175 |
text-align: center; |
|
176 |
border-radius: 3px; |
|
177 |
transition: opacity 0.1s ease-in-out; |
|
178 |
} |
|
179 |
||
180 |
.theme-browser .theme:focus { |
|
181 |
border-color: #5b9dd9; |
|
9 | 182 |
box-shadow: 0 0 2px rgba(30, 140, 190, 0.8); |
5 | 183 |
} |
184 |
||
185 |
.theme-browser .theme:focus .more-details { |
|
186 |
opacity: 1; |
|
187 |
} |
|
188 |
||
189 |
/* Current theme needs to have its action always on view */ |
|
190 |
.theme-browser .theme.active:focus .theme-actions { |
|
191 |
display: block; |
|
192 |
} |
|
193 |
||
194 |
.theme-browser.rendered .theme:hover .more-details, |
|
195 |
.theme-browser.rendered .theme:focus .more-details { |
|
196 |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; |
|
197 |
opacity: 1; |
|
198 |
} |
|
199 |
||
200 |
/** |
|
201 |
* The currently active theme |
|
202 |
*/ |
|
203 |
.theme-browser .theme.active .theme-name { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
204 |
background: #23282d; |
5 | 205 |
color: #fff; |
206 |
padding-left: 110px; |
|
207 |
font-weight: 300; |
|
9 | 208 |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5); |
5 | 209 |
} |
210 |
||
211 |
.theme-browser .customize-control .theme.active .theme-name { |
|
212 |
padding-left: 15px; |
|
213 |
} |
|
214 |
||
215 |
.theme-browser .theme.active .theme-name span { |
|
216 |
font-weight: 600; |
|
217 |
} |
|
218 |
||
219 |
.theme-browser .theme.active .theme-actions { |
|
9 | 220 |
background: rgba(49, 49, 49, 0.7); |
5 | 221 |
border-right: none; |
222 |
opacity: 1; |
|
223 |
} |
|
224 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
225 |
.theme-id-container { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
226 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
227 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
228 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
229 |
.theme-browser .theme.active .theme-actions, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
230 |
.theme-browser .theme .theme-actions { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
231 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
232 |
top: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
233 |
transform: translateY(-50%); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
234 |
left: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
235 |
padding: 10px 15px; |
9 | 236 |
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
237 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
238 |
|
5 | 239 |
.theme-browser .theme.active .theme-actions .button-primary { |
240 |
margin-left: 0; |
|
241 |
} |
|
242 |
||
243 |
.theme-browser .theme .theme-author { |
|
244 |
background: #23282d; |
|
245 |
color: #eee; |
|
246 |
display: none; |
|
247 |
font-size: 14px; |
|
248 |
margin: 0 10px; |
|
249 |
padding: 5px 10px; |
|
250 |
position: absolute; |
|
251 |
bottom: 56px; |
|
252 |
} |
|
253 |
||
254 |
.theme-browser .theme.display-author .theme-author { |
|
255 |
display: block; |
|
256 |
} |
|
257 |
||
258 |
.theme-browser .theme.display-author .theme-author a { |
|
259 |
color: inherit; |
|
260 |
text-decoration: none; |
|
261 |
} |
|
262 |
||
263 |
/** |
|
264 |
* Add new theme |
|
265 |
*/ |
|
266 |
.theme-browser .theme.add-new-theme { |
|
267 |
border: none; |
|
268 |
box-shadow: none; |
|
269 |
} |
|
270 |
||
271 |
.theme-browser .theme.add-new-theme a { |
|
272 |
text-decoration: none; |
|
273 |
display: block; |
|
274 |
position: relative; |
|
275 |
z-index: 1; |
|
276 |
} |
|
277 |
||
278 |
.theme-browser .theme.add-new-theme a:after { |
|
279 |
display: block; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
280 |
content: ""; |
5 | 281 |
background: transparent; |
282 |
background: rgba(0, 0, 0, 0); |
|
283 |
position: absolute; |
|
284 |
top: 0; |
|
285 |
right: 0; |
|
286 |
left: 0; |
|
287 |
bottom: 0; |
|
288 |
padding: 0; |
|
289 |
text-shadow: none; |
|
290 |
border: 5px dashed #d5d2ca; |
|
291 |
border: 5px dashed rgba(0, 0, 0, 0.1); |
|
292 |
box-sizing: border-box; |
|
293 |
} |
|
294 |
||
295 |
.theme-browser .theme.add-new-theme span:after { |
|
296 |
background: #e5e5e5; |
|
297 |
background: rgba(153, 153, 153, 0.1); |
|
298 |
border-radius: 50%; |
|
299 |
display: inline-block; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
300 |
content: "\f132"; |
5 | 301 |
-webkit-font-smoothing: antialiased; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
302 |
font: normal 74px/115px dashicons; |
5 | 303 |
width: 100px; |
304 |
height: 100px; |
|
305 |
vertical-align: middle; |
|
306 |
text-align: center; |
|
307 |
color: rgb(153, 153, 153); |
|
308 |
position: absolute; |
|
309 |
top: 30%; |
|
310 |
right: 50%; |
|
311 |
margin-right: -50px; |
|
312 |
text-indent: -4px; |
|
313 |
padding: 0; |
|
314 |
text-shadow: none; |
|
9 | 315 |
z-index: 4; |
5 | 316 |
} |
317 |
||
318 |
.rtl .theme-browser .theme.add-new-theme span:after { |
|
319 |
text-indent: 4px; |
|
320 |
} |
|
321 |
||
322 |
.theme-browser .theme.add-new-theme a:hover .theme-screenshot, |
|
323 |
.theme-browser .theme.add-new-theme a:focus .theme-screenshot { |
|
324 |
background: none; |
|
325 |
} |
|
326 |
||
327 |
.theme-browser .theme.add-new-theme a:hover span:after, |
|
328 |
.theme-browser .theme.add-new-theme a:focus span:after { |
|
329 |
background: #fff; |
|
330 |
color: #0073aa; |
|
331 |
} |
|
332 |
||
333 |
.theme-browser .theme.add-new-theme a:hover:after, |
|
334 |
.theme-browser .theme.add-new-theme a:focus:after { |
|
335 |
border-color: transparent; |
|
336 |
color: #fff; |
|
337 |
background: #0073aa; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
338 |
content: ""; |
5 | 339 |
} |
340 |
||
341 |
.theme-browser .theme.add-new-theme .theme-name { |
|
342 |
background: none; |
|
343 |
text-align: center; |
|
344 |
box-shadow: none; |
|
345 |
font-weight: 400; |
|
346 |
position: relative; |
|
347 |
top: 0; |
|
348 |
margin-top: -18px; |
|
349 |
padding-top: 0; |
|
350 |
padding-bottom: 48px; |
|
351 |
} |
|
352 |
||
353 |
.theme-browser .theme.add-new-theme a:hover .theme-name, |
|
354 |
.theme-browser .theme.add-new-theme a:focus .theme-name { |
|
355 |
color: #fff; |
|
356 |
z-index: 2; |
|
357 |
} |
|
358 |
||
359 |
/** |
|
360 |
* Theme Overlay |
|
361 |
* Shown when clicking a theme |
|
362 |
*/ |
|
363 |
.theme-overlay .theme-backdrop { |
|
364 |
position: absolute; |
|
365 |
right: -20px; |
|
366 |
left: 0; |
|
367 |
top: 0; |
|
368 |
bottom: 0; |
|
369 |
background: #f1f1f1; |
|
9 | 370 |
background: rgba(238, 238, 238, 0.9); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
371 |
z-index: 10000; /* Over WP Pointers. */ |
5 | 372 |
} |
373 |
||
374 |
.theme-overlay .theme-header { |
|
375 |
position: absolute; |
|
376 |
top: 0; |
|
377 |
right: 0; |
|
378 |
left: 0; |
|
379 |
height: 48px; |
|
380 |
border-bottom: 1px solid #ddd; |
|
381 |
} |
|
382 |
||
383 |
.theme-overlay .theme-header button { |
|
384 |
padding: 0; |
|
385 |
} |
|
386 |
||
387 |
.theme-overlay .theme-header .close { |
|
388 |
cursor: pointer; |
|
389 |
height: 48px; |
|
390 |
width: 50px; |
|
391 |
text-align: center; |
|
392 |
float: left; |
|
393 |
border: 0; |
|
394 |
border-right: 1px solid #ddd; |
|
395 |
background-color: transparent; |
|
396 |
transition: color .1s ease-in-out, background .1s ease-in-out; |
|
397 |
} |
|
398 |
||
399 |
.theme-overlay .theme-header .close:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
400 |
font: normal 22px/50px dashicons !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
401 |
color: #72777c; |
5 | 402 |
display: inline-block; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
403 |
content: "\f335"; |
5 | 404 |
font-weight: 300; |
405 |
} |
|
406 |
||
407 |
/* Left and right navigation */ |
|
408 |
.theme-overlay .theme-header .right, |
|
409 |
.theme-overlay .theme-header .left { |
|
410 |
cursor: pointer; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
411 |
color: #72777c; |
5 | 412 |
background-color: transparent; |
413 |
height: 48px; |
|
414 |
width: 54px; |
|
415 |
float: right; |
|
416 |
text-align: center; |
|
417 |
border: 0; |
|
418 |
border-left: 1px solid #ddd; |
|
419 |
transition: color .1s ease-in-out, background .1s ease-in-out; |
|
420 |
} |
|
421 |
||
422 |
.theme-overlay .theme-header .close:focus, |
|
423 |
.theme-overlay .theme-header .close:hover, |
|
424 |
.theme-overlay .theme-header .right:focus, |
|
425 |
.theme-overlay .theme-header .right:hover, |
|
426 |
.theme-overlay .theme-header .left:focus, |
|
427 |
.theme-overlay .theme-header .left:hover { |
|
428 |
background: #ddd; |
|
429 |
border-color: #ccc; |
|
430 |
color: #000; |
|
431 |
} |
|
432 |
||
433 |
.theme-overlay .theme-header .close:focus:before, |
|
434 |
.theme-overlay .theme-header .close:hover:before { |
|
435 |
color: #000; |
|
436 |
} |
|
437 |
||
438 |
.theme-overlay .theme-header .close:focus, |
|
439 |
.theme-overlay .theme-header .right:focus, |
|
440 |
.theme-overlay .theme-header .left:focus { |
|
9 | 441 |
box-shadow: none; |
442 |
outline: none; |
|
5 | 443 |
} |
444 |
||
445 |
.theme-overlay .theme-header .left.disabled, |
|
446 |
.theme-overlay .theme-header .right.disabled, |
|
447 |
.theme-overlay .theme-header .left.disabled:hover, |
|
448 |
.theme-overlay .theme-header .right.disabled:hover { |
|
449 |
color: #ccc; |
|
450 |
background: inherit; |
|
451 |
cursor: inherit; |
|
452 |
} |
|
453 |
||
454 |
.theme-overlay .theme-header .right:before, |
|
455 |
.theme-overlay .theme-header .left:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
456 |
font: normal 20px/50px dashicons !important; |
5 | 457 |
display: inline; |
458 |
font-weight: 300; |
|
459 |
} |
|
460 |
||
461 |
.theme-overlay .theme-header .left:before { |
|
462 |
content: "\f345"; |
|
463 |
} |
|
464 |
||
465 |
.theme-overlay .theme-header .right:before { |
|
466 |
content: "\f341"; |
|
467 |
} |
|
468 |
||
469 |
.theme-overlay .theme-wrap { |
|
470 |
clear: both; |
|
471 |
position: fixed; |
|
472 |
top: 9%; |
|
473 |
right: 190px; |
|
474 |
left: 30px; |
|
475 |
bottom: 3%; |
|
476 |
background: #fff; |
|
477 |
box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
478 |
z-index: 10000; /* Over WP Pointers. */ |
5 | 479 |
box-sizing: border-box; |
480 |
-webkit-overflow-scrolling: touch; |
|
481 |
} |
|
482 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
483 |
body.folded .theme-browser ~ .theme-overlay .theme-wrap { |
5 | 484 |
right: 70px; |
485 |
} |
|
486 |
||
487 |
.theme-overlay .theme-about { |
|
488 |
position: absolute; |
|
489 |
top: 49px; |
|
490 |
bottom: 57px; |
|
491 |
right: 0; |
|
492 |
left: 0; |
|
493 |
overflow: auto; |
|
494 |
padding: 2% 4%; |
|
495 |
} |
|
496 |
||
497 |
.theme-overlay .theme-actions { |
|
498 |
position: absolute; |
|
499 |
text-align: center; |
|
500 |
bottom: 0; |
|
501 |
right: 0; |
|
502 |
left: 0; |
|
503 |
padding: 10px 25px 5px; |
|
504 |
background: #f3f3f3; |
|
505 |
z-index: 30; |
|
506 |
box-sizing: border-box; |
|
507 |
border-top: 1px solid #eee; |
|
508 |
} |
|
509 |
||
510 |
.ie8 .theme-overlay .theme-actions { |
|
511 |
border: 1px solid #eee; |
|
512 |
} |
|
513 |
||
514 |
.theme-overlay .theme-actions a { |
|
515 |
margin-left: 5px; |
|
516 |
margin-bottom: 5px; |
|
517 |
} |
|
518 |
||
519 |
/* Hide-if-customize for items we can't add classes to */ |
|
520 |
.customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-header"], |
|
521 |
.customize-support .theme-overlay .theme-actions a[href="themes.php?page=custom-background"] { |
|
522 |
display: none; |
|
523 |
} |
|
524 |
||
525 |
.broken-themes a.delete-theme, |
|
526 |
.theme-overlay .theme-actions .delete-theme { |
|
527 |
color: #a00; |
|
528 |
text-decoration: none; |
|
529 |
border-color: transparent; |
|
530 |
box-shadow: none; |
|
531 |
background: transparent; |
|
532 |
} |
|
533 |
||
534 |
.theme-overlay .theme-actions .delete-theme { |
|
535 |
position: absolute; |
|
536 |
left: 10px; |
|
537 |
bottom: 5px; |
|
538 |
} |
|
539 |
||
540 |
.broken-themes a.delete-theme:hover, |
|
541 |
.broken-themes a.delete-theme:focus, |
|
542 |
.theme-overlay .theme-actions .delete-theme:hover, |
|
543 |
.theme-overlay .theme-actions .delete-theme:focus { |
|
544 |
background: #d54e21; |
|
545 |
color: #fff; |
|
546 |
border-color: #d54e21; |
|
547 |
} |
|
548 |
||
549 |
.theme-overlay .theme-actions .active-theme, |
|
550 |
.theme-overlay.active .theme-actions .inactive-theme { |
|
551 |
display: none; |
|
552 |
} |
|
553 |
||
554 |
.theme-overlay .theme-actions .inactive-theme, |
|
555 |
.theme-overlay.active .theme-actions .active-theme { |
|
556 |
display: block; |
|
557 |
} |
|
558 |
||
559 |
/** |
|
560 |
* Theme Screenshots gallery |
|
561 |
*/ |
|
562 |
.theme-overlay .theme-screenshots { |
|
563 |
float: right; |
|
564 |
margin: 0 0 0 30px; |
|
565 |
width: 55%; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
566 |
max-width: 1200px; /* Recommended theme screenshot width, set here to avoid stretching */ |
5 | 567 |
text-align: center; |
568 |
} |
|
569 |
||
570 |
/* First screenshot, shown big */ |
|
571 |
.theme-overlay .screenshot { |
|
572 |
border: 1px solid #fff; |
|
573 |
box-sizing: border-box; |
|
574 |
overflow: hidden; |
|
575 |
position: relative; |
|
9 | 576 |
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); |
5 | 577 |
} |
578 |
||
579 |
.theme-overlay .screenshot:after { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
580 |
content: ""; |
5 | 581 |
display: block; |
582 |
padding-top: 75%; /* using a 4/3 aspect ratio */ |
|
583 |
} |
|
584 |
||
585 |
.theme-overlay .screenshot img { |
|
586 |
height: auto; |
|
587 |
position: absolute; |
|
588 |
right: 0; |
|
589 |
top: 0; |
|
590 |
width: 100%; |
|
591 |
} |
|
592 |
/* Handles old 300px screenshots */ |
|
593 |
.theme-overlay.small-screenshot .theme-screenshots { |
|
594 |
position: absolute; |
|
595 |
width: 302px; |
|
596 |
} |
|
597 |
.theme-overlay.small-screenshot .theme-info { |
|
598 |
margin-right: 350px; |
|
599 |
width: auto; |
|
600 |
} |
|
601 |
||
602 |
/* Other screenshots, shown small and square */ |
|
603 |
.theme-overlay .screenshot.thumb { |
|
604 |
background: #ccc; |
|
605 |
border: 1px solid #eee; |
|
606 |
float: none; |
|
607 |
display: inline-block; |
|
608 |
margin: 10px 5px 0; |
|
609 |
width: 140px; |
|
610 |
height: 80px; |
|
611 |
cursor: pointer; |
|
612 |
} |
|
613 |
||
614 |
.theme-overlay .screenshot.thumb:after { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
615 |
content: ""; |
5 | 616 |
display: block; |
617 |
padding-top: 100%; /* using a 1/1 aspect ratio */ |
|
618 |
} |
|
619 |
||
620 |
.theme-overlay .screenshot.thumb img { |
|
621 |
cursor: pointer; |
|
622 |
height: auto; |
|
623 |
position: absolute; |
|
624 |
right: 0; |
|
625 |
top: 0; |
|
626 |
width: 100%; |
|
627 |
height: auto; |
|
628 |
} |
|
629 |
||
630 |
.theme-overlay .screenshot.selected { |
|
631 |
background: transparent; |
|
632 |
border: 2px solid #00a0d2; |
|
633 |
} |
|
634 |
||
635 |
.theme-overlay .screenshot.selected img { |
|
636 |
opacity: 0.8; |
|
637 |
} |
|
638 |
||
639 |
/* No screenshot placeholder */ |
|
640 |
.theme-browser .theme .theme-screenshot.blank, |
|
641 |
.theme-overlay .screenshot.blank { |
|
642 |
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYGWO8d+/efwYkoKioiMRjYGBC4WHhUK6A8T8QIJt8//59ZC493AAAQssKpBK4F5AAAAAASUVORK5CYII=); |
|
643 |
} |
|
644 |
||
645 |
/** |
|
646 |
* Theme heading information |
|
647 |
*/ |
|
648 |
.theme-overlay .theme-info { |
|
649 |
width: 40%; |
|
650 |
float: right; |
|
651 |
} |
|
652 |
||
653 |
.theme-overlay .current-label { |
|
654 |
background: #32373c; |
|
655 |
color: #fff; |
|
656 |
font-size: 11px; |
|
657 |
display: inline-block; |
|
658 |
padding: 2px 8px; |
|
659 |
border-radius: 2px; |
|
660 |
margin: 0 0 -10px; |
|
661 |
-webkit-user-select: none; |
|
662 |
-moz-user-select: none; |
|
663 |
-ms-user-select: none; |
|
664 |
user-select: none; |
|
665 |
} |
|
666 |
||
667 |
.theme-overlay .theme-name { |
|
668 |
color: #23282d; |
|
669 |
font-size: 32px; |
|
670 |
font-weight: 100; |
|
671 |
margin: 10px 0 0; |
|
672 |
line-height: 1.3; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
673 |
word-wrap: break-word; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
674 |
overflow-wrap: break-word; |
5 | 675 |
} |
676 |
||
677 |
.theme-overlay .theme-version { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
678 |
color: #72777c; |
5 | 679 |
font-size: 13px; |
680 |
font-weight: 400; |
|
681 |
float: none; |
|
682 |
display: inline-block; |
|
683 |
margin-right: 10px; |
|
684 |
} |
|
685 |
||
686 |
.theme-overlay .theme-author { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
687 |
margin: 15px 0 25px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
688 |
color: #72777c; |
5 | 689 |
font-size: 16px; |
690 |
font-weight: 400; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
691 |
line-height: inherit; |
5 | 692 |
} |
693 |
||
694 |
.theme-overlay .theme-author a { |
|
695 |
text-decoration: none; |
|
696 |
} |
|
697 |
||
698 |
.theme-overlay .theme-description { |
|
699 |
color: #555; |
|
700 |
font-size: 15px; |
|
701 |
font-weight: 400; |
|
702 |
line-height: 1.5; |
|
703 |
margin: 30px 0 0 0; |
|
704 |
} |
|
705 |
||
706 |
.theme-overlay .theme-tags { |
|
707 |
border-top: 3px solid #eee; |
|
708 |
color: #82878c; |
|
709 |
font-size: 13px; |
|
710 |
font-weight: 400; |
|
711 |
margin: 30px 0 0 0; |
|
712 |
padding-top: 20px; |
|
713 |
} |
|
714 |
||
715 |
.theme-overlay .theme-tags span { |
|
716 |
color: #444; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
717 |
font-weight: 600; |
5 | 718 |
margin-left: 5px; |
719 |
} |
|
720 |
||
721 |
.theme-overlay .parent-theme { |
|
722 |
background: #f7fcfe; |
|
723 |
border: 1px solid #eee; |
|
724 |
border-right: 4px solid #00a0d2; |
|
725 |
font-size: 14px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
726 |
font-weight: 400; |
5 | 727 |
margin-top: 30px; |
728 |
padding: 10px 20px 10px 10px; |
|
729 |
} |
|
730 |
||
731 |
.theme-overlay .parent-theme strong { |
|
9 | 732 |
font-weight: 600; |
5 | 733 |
} |
734 |
||
735 |
/** |
|
736 |
* Single Theme Mode |
|
737 |
* Displays detailed view inline when a user has no switch capabilities |
|
738 |
*/ |
|
739 |
.single-theme .theme-overlay .theme-backdrop, |
|
740 |
.single-theme .theme-overlay .theme-header, |
|
741 |
.single-theme .theme { |
|
742 |
display: none; |
|
743 |
} |
|
744 |
||
745 |
.single-theme .theme-overlay .theme-wrap { |
|
746 |
clear: both; |
|
747 |
min-height: 330px; |
|
748 |
position: relative; |
|
749 |
right: auto; |
|
750 |
left: auto; |
|
751 |
top: auto; |
|
752 |
bottom: auto; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
753 |
z-index: 10; |
5 | 754 |
} |
755 |
||
756 |
.single-theme .theme-overlay .theme-about { |
|
757 |
padding: 30px 30px 70px; |
|
758 |
position: static; |
|
759 |
} |
|
760 |
||
761 |
.single-theme .theme-overlay .theme-actions { |
|
762 |
position: absolute; |
|
763 |
} |
|
764 |
||
765 |
/** |
|
766 |
* Basic Responsive structure... |
|
767 |
* |
|
768 |
* Shuffles theme columns around based on screen width |
|
769 |
*/ |
|
770 |
||
771 |
@media only screen and (min-width: 2000px) { |
|
772 |
#wpwrap .theme-browser .theme { |
|
773 |
width: 17.6%; |
|
774 |
margin: 0 0 3% 3%; |
|
775 |
} |
|
776 |
||
777 |
#wpwrap .theme-browser .theme:nth-child(3n), |
|
778 |
#wpwrap .theme-browser .theme:nth-child(4n) { |
|
779 |
margin-left: 3%; |
|
780 |
} |
|
781 |
||
782 |
#wpwrap .theme-browser .theme:nth-child(5n) { |
|
783 |
margin-left: 0; |
|
784 |
} |
|
785 |
} |
|
786 |
||
787 |
@media only screen and (min-width: 1680px) { |
|
788 |
.theme-overlay .theme-wrap { |
|
789 |
width: 1450px; |
|
790 |
margin: 0 auto; |
|
791 |
} |
|
792 |
} |
|
793 |
||
794 |
/* Maximum screenshot width reaches 440px */ |
|
795 |
@media only screen and (min-width: 1640px) { |
|
796 |
.theme-browser .theme { |
|
797 |
width: 22.7%; |
|
798 |
margin: 0 0 3% 3%; |
|
799 |
} |
|
800 |
.theme-browser .theme .theme-screenshot:after { |
|
801 |
padding-top: 75%; /* using a 4/3 aspect ratio */ |
|
802 |
} |
|
803 |
||
804 |
.theme-browser .theme:nth-child(3n) { |
|
805 |
margin-left: 3%; |
|
806 |
} |
|
807 |
||
808 |
.theme-browser .theme:nth-child(4n) { |
|
809 |
margin-left: 0; |
|
810 |
} |
|
811 |
} |
|
812 |
/* Maximum screenshot width reaches 440px */ |
|
813 |
@media only screen and (max-width: 1120px) { |
|
814 |
.theme-browser .theme { |
|
815 |
width: 47.5%; |
|
816 |
margin-left: 0; |
|
817 |
} |
|
818 |
||
819 |
.theme-browser .theme:nth-child(even) { |
|
820 |
margin-left: 0; |
|
821 |
} |
|
822 |
||
823 |
.theme-browser .theme:nth-child(odd) { |
|
824 |
margin-left: 5%; |
|
825 |
} |
|
826 |
} |
|
827 |
||
828 |
/* Admin menu is folded */ |
|
829 |
@media only screen and (max-width: 900px) { |
|
830 |
.theme-overlay .theme-wrap { |
|
831 |
right: 65px; |
|
832 |
} |
|
833 |
} |
|
834 |
||
835 |
@media only screen and (max-width: 780px) { |
|
836 |
body.folded .theme-overlay .theme-wrap, |
|
837 |
.theme-overlay .theme-wrap { |
|
838 |
top: 0; /* The adminmenu isn't fixed on mobile, so this can use the full viewport height */ |
|
839 |
left: 0; |
|
840 |
bottom: 0; |
|
841 |
right: 0; |
|
842 |
padding: 70px 20px 20px; |
|
843 |
border: none; |
|
844 |
z-index: 100000; /* should overlap #wpadminbar. */ |
|
845 |
position: fixed; |
|
846 |
} |
|
847 |
||
848 |
.theme-browser .theme.active .theme-name span { |
|
849 |
/* Hide the "Active: " label on smaller screens. */ |
|
850 |
display: none; |
|
851 |
} |
|
852 |
||
853 |
.theme-overlay .theme-screenshots { |
|
854 |
width: 40%; |
|
855 |
} |
|
856 |
||
857 |
.theme-overlay .theme-info { |
|
858 |
width: 50%; |
|
859 |
} |
|
860 |
.single-theme .theme-wrap { |
|
861 |
padding: 10px; |
|
862 |
} |
|
863 |
||
864 |
.theme-browser .theme .theme-actions { |
|
865 |
padding: 5px 10px 4px 10px; |
|
866 |
} |
|
867 |
||
868 |
.theme-overlay.small-screenshot .theme-screenshots { |
|
869 |
position: static; |
|
870 |
float: none; |
|
871 |
max-width: 302px; |
|
872 |
} |
|
873 |
||
874 |
.theme-overlay.small-screenshot .theme-info { |
|
875 |
margin-right: 0; |
|
876 |
width: auto; |
|
877 |
} |
|
878 |
||
879 |
.theme:not(.active):hover .theme-actions, |
|
880 |
.theme:not(.active):focus .theme-actions, |
|
881 |
.theme:hover .more-details, |
|
882 |
.theme:focus .more-details { |
|
883 |
display: none; |
|
884 |
} |
|
885 |
||
886 |
.theme-browser.rendered .theme:hover .theme-screenshot img, |
|
887 |
.theme-browser.rendered .theme:focus .theme-screenshot img { |
|
888 |
opacity: 1.0; |
|
889 |
} |
|
890 |
} |
|
891 |
||
892 |
@media only screen and (max-width: 480px) { |
|
893 |
.theme-browser .theme { |
|
894 |
width: 100%; |
|
895 |
margin-left: 0; |
|
896 |
} |
|
897 |
||
898 |
.theme-browser .theme:nth-child(2n), |
|
899 |
.theme-browser .theme:nth-child(3n) { |
|
900 |
margin-left: 0; |
|
901 |
} |
|
902 |
} |
|
903 |
||
904 |
@media only screen and (max-width: 650px) { |
|
905 |
.theme-overlay .theme-description { |
|
906 |
margin-right: 0; |
|
907 |
} |
|
908 |
||
909 |
.theme-overlay .theme-actions .delete-theme { |
|
910 |
position: relative; |
|
911 |
left: auto; |
|
912 |
bottom: auto; |
|
913 |
} |
|
914 |
||
915 |
.theme-overlay .theme-actions .inactive-theme { |
|
916 |
display: inline; |
|
917 |
} |
|
918 |
||
919 |
.theme-overlay .theme-screenshots { |
|
920 |
width: 100%; |
|
921 |
float: none; |
|
922 |
} |
|
923 |
||
924 |
.theme-overlay .theme-info { |
|
925 |
width: 100%; |
|
926 |
} |
|
927 |
||
928 |
.theme-overlay .theme-author { |
|
929 |
margin: 5px 0 15px 0; |
|
930 |
} |
|
931 |
||
932 |
.theme-overlay .current-label { |
|
933 |
margin-top: 10px; |
|
934 |
font-size: 13px; |
|
935 |
} |
|
936 |
||
937 |
.themes-php .wp-filter-search { |
|
938 |
float: none; |
|
939 |
clear: both; |
|
940 |
right: 0; |
|
941 |
left: 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
942 |
margin: -5px 0 20px 0; |
5 | 943 |
width: 100%; |
944 |
max-width: 280px; |
|
945 |
} |
|
946 |
||
947 |
.theme-browser .theme.add-new-theme span:after { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
948 |
font: normal 60px/90px dashicons; |
5 | 949 |
width: 80px; |
950 |
height: 80px; |
|
951 |
top: 30%; |
|
952 |
right: 50%; |
|
953 |
text-indent: 0; |
|
954 |
margin-right: -40px; |
|
955 |
} |
|
956 |
||
957 |
.single-theme .theme-wrap { |
|
958 |
margin: 0 -10px 0 -12px; |
|
959 |
padding: 10px; |
|
960 |
} |
|
961 |
.single-theme .theme-overlay .theme-about { |
|
962 |
padding: 10px; |
|
963 |
overflow: visible; |
|
964 |
} |
|
965 |
.single-theme .current-label { |
|
966 |
display: none; |
|
967 |
} |
|
968 |
.single-theme .theme-overlay .theme-actions { |
|
969 |
position: static; |
|
970 |
} |
|
971 |
} |
|
972 |
||
973 |
.broken-themes { |
|
974 |
clear: both; |
|
975 |
} |
|
976 |
||
977 |
.broken-themes table { |
|
978 |
text-align: right; |
|
979 |
width: 50%; |
|
980 |
border-spacing: 3px; |
|
981 |
padding: 3px; |
|
982 |
} |
|
983 |
||
984 |
||
985 |
/*------------------------------------------------------------------------------ |
|
986 |
16.2 - Install Themes |
|
987 |
------------------------------------------------------------------------------*/ |
|
988 |
||
989 |
/* Already installed theme */ |
|
990 |
.theme-browser .theme .theme-installed { |
|
991 |
background: #0073aa; |
|
992 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
993 |
.theme-browser .theme .notice-success p:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
994 |
color: #79ba49; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
995 |
content: "\f147"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
996 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
997 |
font: normal 20px/1 'dashicons'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
998 |
-webkit-font-smoothing: antialiased; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
999 |
-moz-osx-font-smoothing: grayscale; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1000 |
vertical-align: top; |
5 | 1001 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1002 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1003 |
.theme-install.updated-message:before { |
9 | 1004 |
content: ""; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1005 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1006 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1007 |
.theme-install-php .wp-filter { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1008 |
padding-right: 20px; |
5 | 1009 |
} |
1010 |
||
1011 |
.theme-install-php a.upload, |
|
1012 |
.theme-install-php a.browse-themes { |
|
1013 |
cursor: pointer; |
|
1014 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1015 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1016 |
.upload-view-toggle .browse, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1017 |
.plugin-install-tab-upload .upload-view-toggle .upload { |
5 | 1018 |
display: none; |
1019 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1020 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1021 |
.plugin-install-tab-upload .upload-view-toggle .browse { |
5 | 1022 |
display: inline; |
1023 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1024 |
|
5 | 1025 |
.upload-theme, |
1026 |
.upload-plugin { |
|
1027 |
box-sizing: border-box; |
|
1028 |
display: none; |
|
1029 |
margin: 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1030 |
padding: 50px 0; |
5 | 1031 |
width: 100%; |
1032 |
overflow: hidden; |
|
1033 |
position: relative; |
|
1034 |
top: 10px; |
|
1035 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1036 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1037 |
.upload-plugin-wrap { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1038 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1039 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1040 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1041 |
.show-upload-view .upload-theme, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1042 |
.show-upload-view .upload-plugin, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1043 |
.show-upload-view .upload-plugin-wrap, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1044 |
.plugin-install-tab-upload .upload-plugin { |
5 | 1045 |
display: block; |
1046 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1047 |
|
5 | 1048 |
.upload-theme .wp-upload-form, |
1049 |
.upload-plugin .wp-upload-form { |
|
1050 |
background: #fafafa; |
|
1051 |
border: 1px solid #e5e5e5; |
|
1052 |
padding: 30px; |
|
1053 |
margin: 30px auto; |
|
1054 |
max-width: 380px; |
|
1055 |
} |
|
1056 |
.upload-theme .install-help, |
|
1057 |
.upload-plugin .install-help { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1058 |
color: #555d66; /* #f1f1f1 background */ |
5 | 1059 |
font-size: 18px; |
1060 |
font-style: normal; |
|
1061 |
margin: 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1062 |
padding: 0; |
5 | 1063 |
text-align: center; |
1064 |
} |
|
1065 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1066 |
p.no-themes, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1067 |
p.no-themes-local { |
5 | 1068 |
clear: both; |
1069 |
color: #666; |
|
1070 |
font-size: 18px; |
|
1071 |
font-style: normal; |
|
1072 |
margin: 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1073 |
padding: 100px 0; |
5 | 1074 |
text-align: center; |
1075 |
display: none; |
|
1076 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1077 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1078 |
.no-results p.no-themes { |
5 | 1079 |
display: block; |
1080 |
} |
|
1081 |
||
1082 |
.theme-install-php .add-new-theme { |
|
1083 |
display: none !important; |
|
1084 |
} |
|
1085 |
||
1086 |
@media only screen and (max-width: 1120px) { |
|
1087 |
.upload-theme .wp-upload-form { |
|
1088 |
margin: 20px 0; |
|
1089 |
max-width: 100%; |
|
1090 |
} |
|
1091 |
.upload-theme .install-help { |
|
1092 |
font-size: 15px; |
|
1093 |
padding: 20px 0 0; |
|
1094 |
text-align: right; |
|
1095 |
} |
|
1096 |
} |
|
1097 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1098 |
.theme-details .theme-rating { |
9 | 1099 |
line-height: 1.9; |
5 | 1100 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1101 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1102 |
.theme-details .star-rating { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1103 |
display: inline; |
5 | 1104 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1105 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1106 |
.theme-details .num-ratings, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1107 |
.theme-details .no-rating { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1108 |
font-size: 11px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1109 |
color: #72777c; |
5 | 1110 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1111 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1112 |
.theme-details .no-rating { |
5 | 1113 |
display: block; |
9 | 1114 |
line-height: 1.9; |
5 | 1115 |
} |
1116 |
||
1117 |
/*------------------------------------------------------------------------------ |
|
1118 |
16.3 - Custom Header Screen |
|
1119 |
------------------------------------------------------------------------------*/ |
|
1120 |
||
1121 |
.appearance_page_custom-header #headimg { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1122 |
border: 1px solid #ddd; |
5 | 1123 |
overflow: hidden; |
1124 |
width: 100%; |
|
1125 |
} |
|
1126 |
||
1127 |
.appearance_page_custom-header #upload-form p label { |
|
1128 |
font-size: 12px; |
|
1129 |
} |
|
1130 |
||
1131 |
.appearance_page_custom-header .available-headers .default-header { |
|
1132 |
float: right; |
|
1133 |
margin: 0 0 20px 20px; |
|
1134 |
} |
|
1135 |
||
1136 |
.appearance_page_custom-header .random-header { |
|
1137 |
clear: both; |
|
1138 |
margin: 0 0 20px 20px; |
|
1139 |
vertical-align: middle; |
|
1140 |
} |
|
1141 |
||
1142 |
.appearance_page_custom-header .available-headers label input, |
|
1143 |
.appearance_page_custom-header .random-header label input { |
|
1144 |
margin-left: 10px; |
|
1145 |
} |
|
1146 |
||
1147 |
.appearance_page_custom-header .available-headers label img { |
|
1148 |
vertical-align: middle; |
|
1149 |
} |
|
1150 |
||
1151 |
||
1152 |
/*------------------------------------------------------------------------------ |
|
1153 |
16.4 - Custom Background Screen |
|
1154 |
------------------------------------------------------------------------------*/ |
|
1155 |
||
1156 |
div#custom-background-image { |
|
1157 |
min-height: 100px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1158 |
border: 1px solid #ddd; |
5 | 1159 |
} |
1160 |
||
1161 |
div#custom-background-image img { |
|
1162 |
max-width: 400px; |
|
1163 |
max-height: 300px; |
|
1164 |
} |
|
1165 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1166 |
.background-position-control input[type="radio"]:checked ~ .button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1167 |
background: #eee; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1168 |
border-color: #999; |
9 | 1169 |
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
|
1170 |
z-index: 1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1171 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1172 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1173 |
.background-position-control input[type="radio"]:focus ~ .button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1174 |
border-color: #5b9dd9; |
9 | 1175 |
box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 115, 170, 0.8); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1176 |
color: #23282d; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1177 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1178 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1179 |
.background-position-control .background-position-center-icon, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1180 |
.background-position-control .background-position-center-icon:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1181 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1182 |
line-height: 1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1183 |
text-align: center; |
9 | 1184 |
transition: background-color .1s ease-in; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1185 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1186 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1187 |
.background-position-control .background-position-center-icon { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1188 |
height: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1189 |
margin-top: 13px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1190 |
vertical-align: top; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1191 |
width: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1192 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1193 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1194 |
.background-position-control .background-position-center-icon:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1195 |
background-color: #555; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1196 |
border-radius: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1197 |
content: ""; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1198 |
height: 12px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1199 |
width: 12px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1200 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1201 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1202 |
.background-position-control .button:hover .background-position-center-icon:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1203 |
.background-position-control input[type="radio"]:focus ~ .button .background-position-center-icon:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1204 |
background-color: #23282d; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1205 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1206 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1207 |
.background-position-control .button-group { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1208 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1209 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1210 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1211 |
.background-position-control .button-group .button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1212 |
border-radius: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1213 |
box-shadow: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1214 |
/* Following properties are overridden by buttons responsive styles (see: wp-includes/css/buttons.css). */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1215 |
height: 40px !important; |
9 | 1216 |
line-height: 2.9 !important; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1217 |
margin: 0 0 0 -1px !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1218 |
padding: 0 10px 1px !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1219 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1220 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1221 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1222 |
.background-position-control .button-group .button:active, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1223 |
.background-position-control .button-group .button:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1224 |
.background-position-control .button-group .button:focus { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1225 |
z-index: 1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1226 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1227 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1228 |
.background-position-control .button-group:last-child .button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1229 |
box-shadow: 0 1px 0 #ccc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1230 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1231 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1232 |
.background-position-control .button-group > label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1233 |
margin: 0 !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1234 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1235 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1236 |
.background-position-control .button-group:first-child > label:first-child .button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1237 |
border-radius: 0 3px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1238 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1239 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1240 |
.background-position-control .button-group:first-child > label:first-child .dashicons { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1241 |
transform: rotate( -45deg ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1242 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1243 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1244 |
.background-position-control .button-group:first-child > label:last-child .button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1245 |
border-radius: 3px 0 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1246 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1247 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1248 |
.background-position-control .button-group:first-child > label:last-child .dashicons { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1249 |
transform: rotate( 45deg ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1250 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1251 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1252 |
.background-position-control .button-group:last-child > label:first-child .button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1253 |
border-radius: 0 0 3px 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1254 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1255 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1256 |
.background-position-control .button-group:last-child > label:first-child .dashicons { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1257 |
transform: rotate( 45deg ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1258 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1259 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1260 |
.background-position-control .button-group:last-child > label:last-child .button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1261 |
border-radius: 0 0 0 3px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1262 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1263 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1264 |
.background-position-control .button-group:last-child > label:last-child .dashicons { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1265 |
transform: rotate( -45deg ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1266 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1267 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1268 |
.background-position-control .button-group .dashicons { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1269 |
margin-top: 9px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1270 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1271 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1272 |
.background-position-control .button-group + .button-group { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1273 |
margin-top: -1px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1274 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1275 |
|
5 | 1276 |
/*------------------------------------------------------------------------------ |
1277 |
23.0 - Full Overlay w/ Sidebar |
|
1278 |
------------------------------------------------------------------------------*/ |
|
1279 |
||
1280 |
body.full-overlay-active { |
|
1281 |
overflow: hidden; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1282 |
/* Hide all the content, the Customizer overlay is then made visible to be the only available content. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1283 |
visibility: hidden; |
5 | 1284 |
} |
1285 |
||
1286 |
.wp-full-overlay { |
|
1287 |
background: transparent; |
|
1288 |
z-index: 500000; |
|
1289 |
position: fixed; |
|
1290 |
overflow: visible; |
|
1291 |
top: 0; |
|
1292 |
bottom: 0; |
|
1293 |
right: 0; |
|
1294 |
left: 0; |
|
1295 |
height: 100%; |
|
1296 |
min-width: 0; |
|
1297 |
} |
|
1298 |
||
1299 |
.wp-full-overlay-sidebar { |
|
1300 |
box-sizing: border-box; |
|
1301 |
position: fixed; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1302 |
min-width: 300px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1303 |
max-width: 600px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1304 |
width: 18%; |
5 | 1305 |
height: 100%; |
1306 |
top: 0; |
|
1307 |
bottom: 0; |
|
1308 |
right: 0; |
|
1309 |
padding: 0; |
|
1310 |
margin: 0; |
|
1311 |
z-index: 10; |
|
1312 |
background: #eee; |
|
1313 |
border-left: none; |
|
1314 |
} |
|
1315 |
||
1316 |
.wp-full-overlay.collapsed .wp-full-overlay-sidebar { |
|
1317 |
overflow: visible; |
|
1318 |
} |
|
1319 |
||
1320 |
.wp-full-overlay.collapsed, |
|
1321 |
.wp-full-overlay.expanded .wp-full-overlay-sidebar { |
|
1322 |
margin-right: 0 !important; |
|
1323 |
} |
|
1324 |
||
1325 |
.wp-full-overlay.expanded { |
|
1326 |
margin-right: 300px; |
|
1327 |
} |
|
1328 |
||
1329 |
.wp-full-overlay.collapsed .wp-full-overlay-sidebar { |
|
1330 |
margin-right: -300px; |
|
1331 |
} |
|
1332 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1333 |
@media screen and (min-width: 1667px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1334 |
.wp-full-overlay.expanded { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1335 |
margin-right: 18%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1336 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1337 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1338 |
.wp-full-overlay.collapsed .wp-full-overlay-sidebar { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1339 |
margin-right: -18%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1340 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1341 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1342 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1343 |
@media screen and (min-width: 3333px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1344 |
.wp-full-overlay.expanded { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1345 |
margin-right: 600px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1346 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1347 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1348 |
.wp-full-overlay.collapsed .wp-full-overlay-sidebar { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1349 |
margin-right: -600px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1350 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1351 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1352 |
|
5 | 1353 |
.wp-full-overlay-sidebar:after { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1354 |
content: ""; |
5 | 1355 |
display: block; |
1356 |
position: absolute; |
|
1357 |
top: 0; |
|
1358 |
bottom: 0; |
|
1359 |
left: 0; |
|
1360 |
width: 3px; |
|
1361 |
z-index: 1000; |
|
1362 |
} |
|
1363 |
||
1364 |
.wp-full-overlay-main { |
|
1365 |
position: absolute; |
|
1366 |
right: 0; |
|
1367 |
left: 0; |
|
1368 |
top: 0; |
|
1369 |
bottom: 0; |
|
1370 |
height: 100%; |
|
1371 |
} |
|
1372 |
||
1373 |
.wp-full-overlay-sidebar .wp-full-overlay-header { |
|
1374 |
position: absolute; |
|
1375 |
right: 0; |
|
1376 |
left: 0; |
|
1377 |
height: 45px; |
|
1378 |
padding: 0 15px; |
|
9 | 1379 |
line-height: 3.2; |
5 | 1380 |
z-index: 10; |
1381 |
margin: 0; |
|
1382 |
border-top: none; |
|
1383 |
box-shadow: none; |
|
1384 |
} |
|
1385 |
||
1386 |
.wp-full-overlay-sidebar .wp-full-overlay-header a.back { |
|
1387 |
margin-top: 9px; |
|
1388 |
} |
|
1389 |
||
1390 |
.wp-full-overlay-sidebar .wp-full-overlay-footer { |
|
1391 |
bottom: 0; |
|
1392 |
border-bottom: none; |
|
1393 |
border-top: none; |
|
1394 |
box-shadow: none; |
|
1395 |
} |
|
1396 |
||
1397 |
.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content { |
|
1398 |
position: absolute; |
|
1399 |
top: 45px; |
|
1400 |
bottom: 45px; |
|
1401 |
right: 0; |
|
1402 |
left: 0; |
|
1403 |
overflow: auto; |
|
1404 |
} |
|
1405 |
||
1406 |
/* Close & Navigation Links */ |
|
1407 |
.theme-install-overlay .wp-full-overlay-sidebar .wp-full-overlay-header { |
|
1408 |
padding: 0; |
|
1409 |
} |
|
1410 |
||
1411 |
.theme-install-overlay .close-full-overlay, |
|
1412 |
.theme-install-overlay .previous-theme, |
|
1413 |
.theme-install-overlay .next-theme { |
|
1414 |
display: block; |
|
1415 |
position: relative; |
|
1416 |
float: right; |
|
1417 |
width: 45px; |
|
1418 |
height: 45px; |
|
1419 |
padding-left: 2px; |
|
1420 |
background: #eee; |
|
1421 |
border-left: 1px solid #ddd; |
|
1422 |
color: #444; |
|
1423 |
cursor: pointer; |
|
1424 |
text-decoration: none; |
|
1425 |
transition: color .1s ease-in-out, background .1s ease-in-out; |
|
1426 |
} |
|
1427 |
||
1428 |
.theme-install-overlay .close-full-overlay:hover, |
|
1429 |
.theme-install-overlay .close-full-overlay:focus, |
|
1430 |
.theme-install-overlay .previous-theme:hover, |
|
1431 |
.theme-install-overlay .previous-theme:focus, |
|
1432 |
.theme-install-overlay .next-theme:hover, |
|
1433 |
.theme-install-overlay .next-theme:focus { |
|
1434 |
background: #ddd; |
|
1435 |
border-color: #ccc; |
|
1436 |
color: #000; |
|
1437 |
outline: none; |
|
1438 |
box-shadow: none; |
|
1439 |
} |
|
1440 |
||
1441 |
.theme-install-overlay .close-full-overlay:before { |
|
1442 |
font: normal 22px/1 dashicons; |
|
1443 |
content: "\f335"; |
|
1444 |
position: relative; |
|
1445 |
top: 7px; |
|
1446 |
right: 13px; |
|
1447 |
} |
|
1448 |
||
1449 |
.theme-install-overlay .previous-theme:before { |
|
1450 |
font: normal 20px/1 dashicons; |
|
1451 |
content: "\f345"; |
|
1452 |
position: relative; |
|
1453 |
top: 6px; |
|
1454 |
right: 14px; |
|
1455 |
} |
|
1456 |
||
1457 |
.theme-install-overlay .next-theme:before { |
|
1458 |
font: normal 20px/1 dashicons; |
|
1459 |
content: "\f341"; |
|
1460 |
position: relative; |
|
1461 |
top: 6px; |
|
1462 |
right: 13px; |
|
1463 |
} |
|
1464 |
||
1465 |
.theme-install-overlay .previous-theme.disabled, |
|
1466 |
.theme-install-overlay .next-theme.disabled, |
|
1467 |
.theme-install-overlay .previous-theme.disabled:hover, |
|
1468 |
.theme-install-overlay .previous-theme.disabled:focus, |
|
1469 |
.theme-install-overlay .next-theme.disabled:hover, |
|
1470 |
.theme-install-overlay .next-theme.disabled:focus { |
|
1471 |
color: #b4b9be; |
|
1472 |
background: #eee; |
|
1473 |
cursor: default; |
|
1474 |
pointer-events: none; |
|
1475 |
} |
|
1476 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1477 |
.theme-install-overlay .close-full-overlay, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1478 |
.theme-install-overlay .previous-theme, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1479 |
.theme-install-overlay .next-theme { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1480 |
border-right: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1481 |
border-top: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1482 |
border-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1483 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1484 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1485 |
.theme-install-overlay .close-full-overlay:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1486 |
.theme-install-overlay .previous-theme:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1487 |
.theme-install-overlay .next-theme:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1488 |
top: 2px; |
5 | 1489 |
right: 0; |
1490 |
} |
|
1491 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1492 |
/* Collapse Button */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1493 |
.wp-core-ui .wp-full-overlay .collapse-sidebar { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1494 |
position: fixed; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1495 |
bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1496 |
right: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1497 |
padding: 9px 10px 9px 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1498 |
height: 45px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1499 |
color: #656a6f; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1500 |
outline: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1501 |
line-height: 1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1502 |
background-color: transparent !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1503 |
border: none !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1504 |
box-shadow: none !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1505 |
border-radius: 0 !important; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1506 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1507 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1508 |
.wp-core-ui .wp-full-overlay .collapse-sidebar:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1509 |
.wp-core-ui .wp-full-overlay .collapse-sidebar:focus { |
5 | 1510 |
color: #0073aa; |
1511 |
} |
|
1512 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1513 |
.wp-full-overlay .collapse-sidebar-arrow, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1514 |
.wp-full-overlay .collapse-sidebar-label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1515 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1516 |
vertical-align: middle; |
9 | 1517 |
line-height: 1.6; |
5 | 1518 |
} |
1519 |
||
1520 |
.wp-full-overlay .collapse-sidebar-arrow { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1521 |
width: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1522 |
height: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1523 |
margin: 0 2px; /* avoid the focus box-shadow to be cut-off */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1524 |
border-radius: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1525 |
overflow: hidden; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1526 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1527 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1528 |
.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1529 |
.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { |
9 | 1530 |
box-shadow: |
1531 |
0 0 0 1px #5b9dd9, |
|
1532 |
0 0 2px 1px rgba(30, 140, 190, 0.8); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1533 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1534 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1535 |
.wp-full-overlay .collapse-sidebar-label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1536 |
margin-right: 3px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1537 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1538 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1539 |
.wp-full-overlay.collapsed .collapse-sidebar-label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1540 |
display: none; |
5 | 1541 |
} |
1542 |
||
1543 |
.wp-full-overlay .collapse-sidebar-arrow:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1544 |
display: block; |
5 | 1545 |
content: "\f148"; |
1546 |
background: #eee; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1547 |
font: normal 20px/1 dashicons; |
5 | 1548 |
speak: none; |
1549 |
padding: 0; |
|
1550 |
-webkit-font-smoothing: antialiased; |
|
1551 |
-moz-osx-font-smoothing: grayscale; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1552 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1553 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1554 |
.wp-core-ui .wp-full-overlay.collapsed .collapse-sidebar { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1555 |
padding: 9px 10px; |
5 | 1556 |
} |
1557 |
||
1558 |
/* rtl:ignore */ |
|
1559 |
.wp-full-overlay.collapsed .collapse-sidebar-arrow:before, |
|
1560 |
.rtl .wp-full-overlay .collapse-sidebar-arrow:before { |
|
9 | 1561 |
transform: rotate(180.001deg); /* Firefox: promoting to its own layer to trigger anti-aliasing */ |
5 | 1562 |
} |
1563 |
||
1564 |
.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before { |
|
1565 |
transform: none; |
|
1566 |
} |
|
1567 |
||
1568 |
/* Animations */ |
|
1569 |
.wp-full-overlay, |
|
1570 |
.wp-full-overlay-sidebar, |
|
1571 |
.wp-full-overlay .collapse-sidebar, |
|
1572 |
.wp-full-overlay-main { |
|
1573 |
transition-property: right, left, top, bottom, width, margin; |
|
1574 |
transition-duration: 0.2s; |
|
1575 |
} |
|
1576 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1577 |
/* Device/preview size toggles */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1578 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1579 |
.wp-full-overlay { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1580 |
background: #191e23; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1581 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1582 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1583 |
.wp-full-overlay-main { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1584 |
background-color: #f1f1f1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1585 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1586 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1587 |
.expanded .wp-full-overlay-footer { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1588 |
position: fixed; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1589 |
bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1590 |
right: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1591 |
min-width: 299px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1592 |
max-width: 599px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1593 |
width: 18%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1594 |
width: calc( 18% - 1px ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1595 |
height: 45px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1596 |
border-top: 1px solid #ddd; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1597 |
background: #eee; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1598 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1599 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1600 |
.wp-full-overlay-footer .devices-wrapper { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1601 |
float: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1602 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1603 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1604 |
.wp-full-overlay-footer .devices { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1605 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1606 |
background: #eee; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1607 |
box-shadow: 20px 0 10px -5px #eee; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1608 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1609 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1610 |
.wp-full-overlay-footer .devices button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1611 |
cursor: pointer; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1612 |
background: transparent; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1613 |
border: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1614 |
height: 45px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1615 |
padding: 0 3px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1616 |
margin: 0 -4px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1617 |
box-shadow: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1618 |
border-top: 1px solid transparent; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1619 |
border-bottom: 4px solid transparent; |
9 | 1620 |
transition: |
1621 |
.15s color ease-in-out, |
|
1622 |
.15s background-color ease-in-out, |
|
1623 |
.15s border-color ease-in-out; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1624 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1625 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1626 |
.wp-full-overlay-footer .devices button:focus { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1627 |
box-shadow: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1628 |
outline: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1629 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1630 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1631 |
.wp-full-overlay-footer .devices button:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1632 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1633 |
-webkit-font-smoothing: antialiased; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1634 |
font: normal 20px/30px "dashicons"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1635 |
vertical-align: top; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1636 |
margin: 3px 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1637 |
padding: 4px 8px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1638 |
color: #656a6f; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1639 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1640 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1641 |
.wp-full-overlay-footer .devices button.active { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1642 |
border-bottom-color: #191e23; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1643 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1644 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1645 |
.wp-full-overlay-footer .devices button:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1646 |
.wp-full-overlay-footer .devices button:focus { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1647 |
background-color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1648 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1649 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1650 |
.wp-full-overlay-footer .devices button:focus, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1651 |
.wp-full-overlay-footer .devices button.active:hover { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1652 |
border-bottom-color: #0073aa; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1653 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1654 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1655 |
.wp-full-overlay-footer .devices button.active:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1656 |
color: #191e23; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1657 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1658 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1659 |
.wp-full-overlay-footer .devices button:hover:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1660 |
.wp-full-overlay-footer .devices button:focus:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1661 |
color: #0073aa; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1662 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1663 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1664 |
.wp-full-overlay-footer .devices .preview-desktop:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1665 |
content: "\f472"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1666 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1667 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1668 |
.wp-full-overlay-footer .devices .preview-tablet:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1669 |
content: "\f471"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1670 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1671 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1672 |
.wp-full-overlay-footer .devices .preview-mobile:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1673 |
content: "\f470"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1674 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1675 |
|
9 | 1676 |
@media screen and (max-width: 1024px) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1677 |
.wp-full-overlay-footer .devices { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1678 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1679 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1680 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1681 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1682 |
.collapsed .wp-full-overlay-footer .devices button:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1683 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1684 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1685 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1686 |
.preview-mobile .wp-full-overlay-main { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1687 |
margin: auto -160px auto 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1688 |
width: 320px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1689 |
height: 480px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1690 |
max-height: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1691 |
max-width: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1692 |
right: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1693 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1694 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1695 |
.preview-tablet .wp-full-overlay-main { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1696 |
margin: auto -360px auto 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1697 |
width: 720px; /* Size is loosely based on a typical "tablet" device size. Intentionally ambiguous - this does not represent any particular device precisely. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1698 |
height: 1080px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1699 |
max-height: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1700 |
max-width: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1701 |
right: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1702 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1703 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1704 |
|
5 | 1705 |
/*------------------------------------------------------------------------------ |
1706 |
24.0 - Customize Loader |
|
1707 |
------------------------------------------------------------------------------*/ |
|
1708 |
||
1709 |
.no-customize-support .hide-if-no-customize, |
|
1710 |
.customize-support .hide-if-customize, |
|
1711 |
.no-customize-support.wp-core-ui .hide-if-no-customize, |
|
1712 |
.no-customize-support .wp-core-ui .hide-if-no-customize, |
|
1713 |
.customize-support.wp-core-ui .hide-if-customize, |
|
1714 |
.customize-support .wp-core-ui .hide-if-customize { |
|
1715 |
display: none; |
|
1716 |
} |
|
1717 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1718 |
#customize-container, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1719 |
#customize-controls .notice.notification-overlay { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1720 |
background: #eee; |
5 | 1721 |
z-index: 500000; |
1722 |
position: fixed; |
|
1723 |
overflow: visible; |
|
1724 |
top: 0; |
|
1725 |
bottom: 0; |
|
1726 |
right: 0; |
|
1727 |
left: 0; |
|
1728 |
height: 100%; |
|
1729 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1730 |
#customize-container { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1731 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1732 |
} |
5 | 1733 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1734 |
/* Make the Customizer and Theme installer overlays the only available content. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1735 |
#customize-container, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1736 |
.theme-install-overlay { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1737 |
visibility: visible; |
5 | 1738 |
} |
1739 |
||
1740 |
.customize-loading #customize-container iframe { |
|
1741 |
opacity: 0; |
|
1742 |
} |
|
1743 |
||
1744 |
#customize-container iframe, |
|
1745 |
.theme-install-overlay iframe { |
|
1746 |
height: 100%; |
|
1747 |
width: 100%; |
|
1748 |
z-index: 20; |
|
1749 |
transition: opacity 0.3s; |
|
1750 |
} |
|
1751 |
||
1752 |
#customize-controls { |
|
1753 |
margin-top: 0; |
|
1754 |
} |
|
1755 |
||
1756 |
.theme-install-overlay { |
|
1757 |
display: none; |
|
1758 |
} |
|
1759 |
||
1760 |
.theme-install-overlay.single-theme { |
|
1761 |
display: block; |
|
1762 |
} |
|
1763 |
||
1764 |
.install-theme-info { |
|
1765 |
display: none; |
|
1766 |
padding: 10px 20px 60px; |
|
1767 |
} |
|
1768 |
||
1769 |
.single-theme .install-theme-info { |
|
1770 |
padding-top: 15px; |
|
1771 |
} |
|
1772 |
||
1773 |
.theme-install-overlay .install-theme-info { |
|
1774 |
display: block; |
|
1775 |
} |
|
1776 |
||
1777 |
.install-theme-info .theme-install { |
|
1778 |
float: left; |
|
1779 |
margin-top: 18px; |
|
1780 |
} |
|
1781 |
||
1782 |
.install-theme-info .theme-name { |
|
1783 |
font-size: 16px; |
|
9 | 1784 |
line-height: 1.5; |
5 | 1785 |
margin-bottom: 0; |
1786 |
margin-top: 0; |
|
1787 |
} |
|
1788 |
||
1789 |
.install-theme-info .theme-screenshot { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1790 |
margin: 15px 0; |
5 | 1791 |
width: 258px; |
1792 |
border: 1px solid #ccc; |
|
1793 |
} |
|
1794 |
||
1795 |
.install-theme-info .theme-details { |
|
1796 |
overflow: hidden; |
|
1797 |
} |
|
1798 |
||
1799 |
.theme-details .theme-version { |
|
1800 |
margin: 15px 0; |
|
1801 |
} |
|
1802 |
||
1803 |
.theme-details .theme-description { |
|
1804 |
float: right; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1805 |
color: #72777c; |
9 | 1806 |
line-height: 1.6; |
5 | 1807 |
max-width: 100%; |
1808 |
} |
|
1809 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1810 |
.theme-install-overlay .wp-full-overlay-header .button { |
5 | 1811 |
float: left; |
1812 |
margin: 8px 0 0 10px; |
|
1813 |
/* For when .theme-install is a span rather than a.button-primary (already installed theme) */ |
|
9 | 1814 |
line-height: 2; |
5 | 1815 |
} |
1816 |
||
1817 |
.theme-install-overlay .wp-full-overlay-sidebar { |
|
1818 |
background: #eee; |
|
1819 |
border-left: 1px solid #ddd; |
|
1820 |
} |
|
1821 |
||
1822 |
.theme-install-overlay .wp-full-overlay-sidebar-content { |
|
1823 |
background: #fff; |
|
1824 |
border-top: 1px solid #ddd; |
|
1825 |
border-bottom: 1px solid #ddd; |
|
1826 |
} |
|
1827 |
||
1828 |
.theme-install-overlay .wp-full-overlay-main { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1829 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1830 |
z-index: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1831 |
background-color: #f1f1f1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1832 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1833 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1834 |
.customize-loading #customize-container { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1835 |
background-color: #f1f1f1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1836 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1837 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1838 |
#customize-preview.wp-full-overlay-main:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1839 |
.customize-loading #customize-container:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1840 |
#customize-controls .notice.notification-overlay.notification-loading:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1841 |
.theme-install-overlay .wp-full-overlay-main:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1842 |
content: ""; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1843 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1844 |
width: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1845 |
height: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1846 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1847 |
right: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1848 |
top: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1849 |
z-index: -1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1850 |
margin: -10px -10px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1851 |
transform: translateZ(0); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1852 |
background: transparent url(../images/spinner.gif) no-repeat center center; |
5 | 1853 |
background-size: 20px 20px; |
1854 |
} |
|
1855 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1856 |
#customize-preview.wp-full-overlay-main.iframe-ready:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1857 |
.theme-install-overlay.iframe-ready .wp-full-overlay-main:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1858 |
background-image: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1859 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1860 |
|
5 | 1861 |
/* =Media Queries |
1862 |
-------------------------------------------------------------- */ |
|
1863 |
||
1864 |
/** |
|
1865 |
* HiDPI Displays |
|
1866 |
*/ |
|
1867 |
@media print, |
|
1868 |
(-webkit-min-device-pixel-ratio: 1.25), |
|
1869 |
(min-resolution: 120dpi) { |
|
1870 |
.wp-full-overlay .collapse-sidebar-arrow { |
|
1871 |
background-image: url(../images/arrows-2x.png); |
|
1872 |
background-size: 15px 123px; |
|
1873 |
} |
|
1874 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1875 |
#customize-preview.wp-full-overlay-main:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1876 |
.customize-loading #customize-container:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1877 |
#customize-controls .notice.notification-overlay.notification-loading:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1878 |
.theme-install-overlay .wp-full-overlay-main:before { |
5 | 1879 |
background-image: url(../images/spinner-2x.gif); |
1880 |
} |
|
1881 |
} |
|
1882 |
||
9 | 1883 |
@media screen and (max-width: 782px) { |
5 | 1884 |
.available-theme .action-links .delete-theme { |
1885 |
float: none; |
|
1886 |
margin: 0; |
|
1887 |
padding: 0; |
|
1888 |
clear: both; |
|
1889 |
} |
|
1890 |
||
1891 |
.available-theme .action-links .delete-theme a { |
|
1892 |
padding: 0; |
|
1893 |
} |
|
1894 |
||
1895 |
.broken-themes table { |
|
1896 |
width: 100%; |
|
1897 |
} |
|
1898 |
||
1899 |
.theme-install-overlay .wp-full-overlay-header .theme-install { |
|
1900 |
margin-top: 6px; |
|
1901 |
line-height: normal; |
|
1902 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1903 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1904 |
.theme-browser .theme .theme-actions .button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1905 |
margin-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1906 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1907 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1908 |
.theme-browser .theme.active .theme-actions, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1909 |
.theme-browser .theme .theme-actions { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1910 |
padding-top: 8px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1911 |
padding-bottom: 8px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1912 |
} |
5 | 1913 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1914 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1915 |
@media aural { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1916 |
.theme .notice:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1917 |
.theme-info .updating-message:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1918 |
.theme-info .updated-message:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1919 |
.theme-install.updating-message:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1920 |
speak: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1921 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1922 |
} |