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