author | ymh <ymh.work@gmail.com> |
Tue, 15 Dec 2020 13:49:49 +0100 | |
changeset 16 | a86126ab1dd4 |
parent 9 | 177826044cd9 |
child 18 | be944660c56a |
permissions | -rw-r--r-- |
5 | 1 |
/* 2 column liquid layout */ |
2 |
#wpwrap { |
|
3 |
height: auto; |
|
4 |
min-height: 100%; |
|
5 |
width: 100%; |
|
6 |
position: relative; |
|
7 |
-webkit-font-smoothing: subpixel-antialiased; |
|
8 |
} |
|
9 |
||
10 |
#wpcontent { |
|
11 |
height: 100%; |
|
12 |
padding-left: 20px; |
|
13 |
} |
|
14 |
||
15 |
#wpcontent, |
|
16 |
#wpfooter { |
|
17 |
margin-left: 160px; |
|
18 |
} |
|
19 |
||
20 |
.folded #wpcontent, |
|
21 |
.folded #wpfooter { |
|
22 |
margin-left: 36px; |
|
23 |
} |
|
24 |
||
25 |
#wpbody-content { |
|
26 |
padding-bottom: 65px; |
|
27 |
float: left; |
|
28 |
width: 100%; |
|
16 | 29 |
overflow: visible; |
5 | 30 |
} |
31 |
||
32 |
/* inner 2 column liquid layout */ |
|
33 |
||
34 |
.inner-sidebar { |
|
35 |
float: right; |
|
36 |
clear: right; |
|
37 |
display: none; |
|
38 |
width: 281px; |
|
39 |
position: relative; |
|
40 |
} |
|
41 |
||
42 |
.columns-2 .inner-sidebar { |
|
43 |
margin-right: auto; |
|
44 |
width: 286px; |
|
45 |
display: block; |
|
46 |
} |
|
47 |
||
48 |
.inner-sidebar #side-sortables, |
|
49 |
.columns-2 .inner-sidebar #side-sortables { |
|
50 |
min-height: 300px; |
|
51 |
width: 280px; |
|
52 |
padding: 0; |
|
53 |
} |
|
54 |
||
55 |
.has-right-sidebar .inner-sidebar { |
|
56 |
display: block; |
|
57 |
} |
|
58 |
||
59 |
.has-right-sidebar #post-body { |
|
60 |
float: left; |
|
61 |
clear: left; |
|
62 |
width: 100%; |
|
63 |
margin-right: -2000px; |
|
64 |
} |
|
65 |
||
66 |
.has-right-sidebar #post-body-content { |
|
67 |
margin-right: 300px; |
|
68 |
float: none; |
|
69 |
width: auto; |
|
70 |
} |
|
71 |
||
72 |
/* 2 columns main area */ |
|
73 |
||
74 |
#col-left { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
75 |
float: left; |
5 | 76 |
width: 35%; |
77 |
} |
|
78 |
||
79 |
#col-right { |
|
80 |
float: right; |
|
81 |
width: 65%; |
|
82 |
} |
|
83 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
84 |
#col-left .col-wrap { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
85 |
padding: 0 6px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
86 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
87 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
88 |
#col-right .col-wrap { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
89 |
padding: 0 0 0 6px; |
5 | 90 |
} |
91 |
||
92 |
/* utility classes */ |
|
93 |
.alignleft { |
|
94 |
float: left; |
|
95 |
} |
|
96 |
||
97 |
.alignright { |
|
98 |
float: right; |
|
99 |
} |
|
100 |
||
101 |
.textleft { |
|
102 |
text-align: left; |
|
103 |
} |
|
104 |
||
105 |
.textright { |
|
106 |
text-align: right; |
|
107 |
} |
|
108 |
||
109 |
.clear { |
|
110 |
clear: both; |
|
111 |
} |
|
112 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
113 |
/* modern clearfix */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
114 |
.wp-clearfix:after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
115 |
content: ""; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
116 |
display: table; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
117 |
clear: both; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
118 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
119 |
|
5 | 120 |
/* Hide visually but not from screen readers */ |
121 |
.screen-reader-text, |
|
122 |
.screen-reader-text span, |
|
123 |
.ui-helper-hidden-accessible { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
124 |
border: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
125 |
clip: rect(1px, 1px, 1px, 1px); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
126 |
-webkit-clip-path: inset(50%); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
127 |
clip-path: inset(50%); |
5 | 128 |
height: 1px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
129 |
margin: -1px; |
5 | 130 |
overflow: hidden; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
131 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
132 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
133 |
width: 1px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
134 |
word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */ |
5 | 135 |
} |
136 |
||
9 | 137 |
.button .screen-reader-text { |
138 |
height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */ |
|
139 |
} |
|
140 |
||
5 | 141 |
.screen-reader-shortcut { |
142 |
position: absolute; |
|
143 |
top: -1000em; |
|
144 |
} |
|
145 |
||
146 |
.screen-reader-shortcut:focus { |
|
147 |
left: 6px; |
|
148 |
top: -25px; |
|
149 |
height: auto; |
|
150 |
width: auto; |
|
151 |
display: block; |
|
152 |
font-size: 14px; |
|
153 |
font-weight: 600; |
|
154 |
padding: 15px 23px 14px; |
|
155 |
background: #f1f1f1; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
156 |
color: #0073aa; |
5 | 157 |
z-index: 100000; |
158 |
line-height: normal; |
|
9 | 159 |
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); |
5 | 160 |
text-decoration: none; |
9 | 161 |
/* Only visible in Windows High Contrast mode */ |
162 |
outline: 2px solid transparent; |
|
163 |
outline-offset: -2px; |
|
5 | 164 |
} |
165 |
||
166 |
.hidden, |
|
167 |
.js .closed .inside, |
|
168 |
.js .hide-if-js, |
|
169 |
.no-js .hide-if-no-js, |
|
170 |
.js.wp-core-ui .hide-if-js, |
|
171 |
.js .wp-core-ui .hide-if-js, |
|
172 |
.no-js.wp-core-ui .hide-if-no-js, |
|
173 |
.no-js .wp-core-ui .hide-if-no-js { |
|
174 |
display: none; |
|
175 |
} |
|
176 |
||
177 |
/* @todo: Take a second look. Large chunks of shared color, from the colors.css merge */ |
|
178 |
.widget-top, |
|
179 |
.menu-item-handle, |
|
180 |
.widget-inside, |
|
181 |
#menu-settings-column .accordion-container, |
|
182 |
#menu-management .menu-edit, |
|
183 |
.manage-menus, |
|
184 |
table.widefat, |
|
185 |
.stuffbox, |
|
186 |
p.popular-tags, |
|
187 |
.widgets-holder-wrap, |
|
188 |
.wp-editor-container, |
|
189 |
.popular-tags, |
|
190 |
.feature-filter, |
|
191 |
.imgedit-group, |
|
192 |
.comment-ays { |
|
16 | 193 |
border: 1px solid #ccd0d4; |
9 | 194 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
5 | 195 |
} |
196 |
||
197 |
table.widefat, |
|
198 |
.wp-editor-container, |
|
199 |
.stuffbox, |
|
200 |
p.popular-tags, |
|
201 |
.widgets-holder-wrap, |
|
202 |
.popular-tags, |
|
203 |
.feature-filter, |
|
204 |
.imgedit-group, |
|
205 |
.comment-ays { |
|
206 |
background: #fff; |
|
207 |
} |
|
208 |
||
209 |
/* general */ |
|
210 |
html, |
|
211 |
body { |
|
212 |
height: 100%; |
|
213 |
margin: 0; |
|
214 |
padding: 0; |
|
215 |
} |
|
216 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
217 |
body { |
5 | 218 |
background: #f1f1f1; |
219 |
color: #444; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
220 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
5 | 221 |
font-size: 13px; |
222 |
line-height: 1.4em; |
|
223 |
min-width: 600px; |
|
224 |
} |
|
225 |
||
226 |
body.iframe { |
|
227 |
min-width: 0; |
|
228 |
padding-top: 1px; |
|
229 |
} |
|
230 |
||
231 |
body.modal-open { |
|
232 |
overflow: hidden; |
|
233 |
} |
|
234 |
||
235 |
body.mobile.modal-open #wpwrap { |
|
236 |
overflow: hidden; |
|
237 |
position: fixed; |
|
238 |
height: 100%; |
|
239 |
} |
|
240 |
||
241 |
iframe, |
|
242 |
img { |
|
243 |
border: 0; |
|
244 |
} |
|
245 |
||
246 |
td { |
|
247 |
font-family: inherit; |
|
248 |
font-size: inherit; |
|
249 |
font-weight: inherit; |
|
250 |
line-height: inherit; |
|
251 |
} |
|
252 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
253 |
/* Any change to the default link style must be applied to button-link too. */ |
5 | 254 |
a { |
255 |
color: #0073aa; |
|
256 |
transition-property: border, background, color; |
|
257 |
transition-duration: .05s; |
|
258 |
transition-timing-function: ease-in-out; |
|
259 |
} |
|
260 |
||
261 |
a, |
|
262 |
div { |
|
263 |
outline: 0; |
|
264 |
} |
|
265 |
||
266 |
a:hover, |
|
267 |
a:active { |
|
16 | 268 |
color: #006799; |
5 | 269 |
} |
270 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
271 |
a:focus, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
272 |
a:focus .media-icon img, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
273 |
.wp-person a:focus .gravatar { |
5 | 274 |
color: #124964; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
275 |
box-shadow: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
276 |
0 0 0 1px #5b9dd9, |
9 | 277 |
0 0 2px 1px rgba(30, 140, 190, 0.8); |
16 | 278 |
/* Only visible in Windows High Contrast mode */ |
279 |
outline: 1px solid transparent; |
|
5 | 280 |
} |
281 |
||
9 | 282 |
#adminmenu a:focus { |
283 |
box-shadow: none; |
|
284 |
/* Only visible in Windows High Contrast mode */ |
|
285 |
outline: 1px solid transparent; |
|
286 |
outline-offset: -1px; |
|
287 |
} |
|
288 |
||
5 | 289 |
.screen-reader-text:focus { |
290 |
box-shadow: none; |
|
291 |
outline: none; |
|
292 |
} |
|
293 |
||
294 |
blockquote, |
|
295 |
q { |
|
296 |
quotes: none; |
|
297 |
} |
|
298 |
||
299 |
blockquote:before, |
|
300 |
blockquote:after, |
|
301 |
q:before, |
|
302 |
q:after { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
303 |
content: ""; |
5 | 304 |
content: none; |
305 |
} |
|
306 |
||
16 | 307 |
p, |
308 |
.wp-die-message { |
|
5 | 309 |
font-size: 13px; |
310 |
line-height: 1.5; |
|
311 |
margin: 1em 0; |
|
312 |
} |
|
313 |
||
314 |
blockquote { |
|
315 |
margin: 1em; |
|
316 |
} |
|
317 |
||
318 |
li, |
|
319 |
dd { |
|
320 |
margin-bottom: 6px; |
|
321 |
} |
|
322 |
||
323 |
h1, |
|
324 |
h2, |
|
325 |
h3, |
|
326 |
h4, |
|
327 |
h5, |
|
328 |
h6 { |
|
329 |
display: block; |
|
330 |
font-weight: 600; |
|
331 |
} |
|
332 |
||
333 |
h1 { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
334 |
color: #23282d; |
5 | 335 |
font-size: 2em; |
336 |
margin: .67em 0; |
|
337 |
} |
|
338 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
339 |
h2, |
5 | 340 |
h3 { |
341 |
color: #23282d; |
|
342 |
font-size: 1.3em; |
|
343 |
margin: 1em 0; |
|
344 |
} |
|
345 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
346 |
.update-core-php h2 { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
347 |
margin-top: 2em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
348 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
349 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
350 |
.update-php h2, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
351 |
.update-messages h2, |
5 | 352 |
h4 { |
353 |
font-size: 1em; |
|
354 |
margin: 1.33em 0; |
|
355 |
} |
|
356 |
||
357 |
h5 { |
|
358 |
font-size: 0.83em; |
|
359 |
margin: 1.67em 0; |
|
360 |
} |
|
361 |
||
362 |
h6 { |
|
363 |
font-size: 0.67em; |
|
364 |
margin: 2.33em 0; |
|
365 |
} |
|
366 |
||
367 |
ul, |
|
368 |
ol { |
|
369 |
padding: 0; |
|
370 |
} |
|
371 |
||
372 |
ul { |
|
373 |
list-style: none; |
|
374 |
} |
|
375 |
||
376 |
ol { |
|
377 |
list-style-type: decimal; |
|
378 |
margin-left: 2em; |
|
379 |
} |
|
380 |
||
381 |
ul.ul-disc { |
|
382 |
list-style: disc outside; |
|
383 |
} |
|
384 |
||
385 |
ul.ul-square { |
|
386 |
list-style: square outside; |
|
387 |
} |
|
388 |
||
389 |
ol.ol-decimal { |
|
390 |
list-style: decimal outside; |
|
391 |
} |
|
392 |
||
393 |
ul.ul-disc, |
|
394 |
ul.ul-square, |
|
395 |
ol.ol-decimal { |
|
396 |
margin-left: 1.8em; |
|
397 |
} |
|
398 |
||
399 |
ul.ul-disc > li, |
|
400 |
ul.ul-square > li, |
|
401 |
ol.ol-decimal > li { |
|
402 |
margin: 0 0 0.5em; |
|
403 |
} |
|
404 |
||
405 |
/* rtl:ignore */ |
|
406 |
.ltr { |
|
407 |
direction: ltr; |
|
408 |
} |
|
409 |
||
410 |
/* rtl:ignore */ |
|
411 |
.code, |
|
412 |
code { |
|
413 |
font-family: Consolas, Monaco, monospace; |
|
414 |
direction: ltr; |
|
415 |
unicode-bidi: embed; |
|
416 |
} |
|
417 |
||
418 |
kbd, |
|
419 |
code { |
|
420 |
padding: 3px 5px 2px 5px; |
|
421 |
margin: 0 1px; |
|
422 |
background: #eaeaea; |
|
9 | 423 |
background: rgba(0, 0, 0, 0.07); |
5 | 424 |
font-size: 13px; |
425 |
} |
|
426 |
||
427 |
.subsubsub { |
|
428 |
list-style: none; |
|
429 |
margin: 8px 0 0; |
|
430 |
padding: 0; |
|
431 |
font-size: 13px; |
|
432 |
float: left; |
|
433 |
color: #666; |
|
434 |
} |
|
435 |
||
436 |
.subsubsub a { |
|
437 |
line-height: 2; |
|
438 |
padding: .2em; |
|
439 |
text-decoration: none; |
|
440 |
} |
|
441 |
||
442 |
.subsubsub a .count, |
|
443 |
.subsubsub a.current .count { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
444 |
color: #555d66; /* #f1f1f1 background */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
445 |
font-weight: 400; |
5 | 446 |
} |
447 |
||
448 |
.subsubsub a.current { |
|
449 |
font-weight: 600; |
|
450 |
border: none; |
|
451 |
} |
|
452 |
||
453 |
.subsubsub li { |
|
454 |
display: inline-block; |
|
455 |
margin: 0; |
|
456 |
padding: 0; |
|
457 |
white-space: nowrap; |
|
458 |
} |
|
459 |
||
460 |
/* .widefat - main style for tables */ |
|
461 |
.widefat { |
|
462 |
border-spacing: 0; |
|
463 |
width: 100%; |
|
464 |
clear: both; |
|
465 |
margin: 0; |
|
466 |
} |
|
467 |
||
468 |
.widefat * { |
|
469 |
word-wrap: break-word; |
|
470 |
} |
|
471 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
472 |
.widefat a, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
473 |
.widefat button.button-link { |
5 | 474 |
text-decoration: none; |
475 |
} |
|
476 |
||
477 |
.widefat td, |
|
478 |
.widefat th { |
|
479 |
padding: 8px 10px; |
|
480 |
} |
|
481 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
482 |
.widefat thead th, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
483 |
.widefat thead td { |
16 | 484 |
border-bottom: 1px solid #ccd0d4; |
5 | 485 |
} |
486 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
487 |
.widefat tfoot th, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
488 |
.widefat tfoot td { |
16 | 489 |
border-top: 1px solid #ccd0d4; |
5 | 490 |
border-bottom: none; |
491 |
} |
|
492 |
||
493 |
.widefat .no-items td { |
|
494 |
border-bottom-width: 0; |
|
495 |
} |
|
496 |
||
497 |
.widefat td { |
|
498 |
vertical-align: top; |
|
499 |
} |
|
500 |
||
501 |
.widefat td, |
|
502 |
.widefat td p, |
|
503 |
.widefat td ol, |
|
504 |
.widefat td ul { |
|
505 |
font-size: 13px; |
|
506 |
line-height: 1.5em; |
|
507 |
} |
|
508 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
509 |
.widefat th, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
510 |
.widefat thead td, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
511 |
.widefat tfoot td { |
5 | 512 |
text-align: left; |
513 |
line-height: 1.3em; |
|
514 |
font-size: 14px; |
|
515 |
} |
|
516 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
517 |
.widefat th input, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
518 |
.updates-table td input, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
519 |
.widefat thead td input, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
520 |
.widefat tfoot td input { |
5 | 521 |
margin: 0 0 0 8px; |
522 |
padding: 0; |
|
523 |
vertical-align: text-top; |
|
524 |
} |
|
525 |
||
526 |
.widefat .check-column { |
|
527 |
width: 2.2em; |
|
528 |
padding: 6px 0 25px; |
|
529 |
vertical-align: top; |
|
530 |
} |
|
531 |
||
532 |
.widefat tbody th.check-column { |
|
533 |
padding: 9px 0 22px; |
|
534 |
} |
|
535 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
536 |
.widefat thead td.check-column, |
5 | 537 |
.widefat tbody th.check-column, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
538 |
.updates-table tbody td.check-column, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
539 |
.widefat tfoot td.check-column { |
5 | 540 |
padding: 11px 0 0 3px; |
541 |
} |
|
542 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
543 |
.widefat thead td.check-column, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
544 |
.widefat tfoot td.check-column { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
545 |
padding-top: 4px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
546 |
vertical-align: middle; |
5 | 547 |
} |
548 |
||
549 |
.update-php div.updated, |
|
550 |
.update-php div.error { |
|
551 |
margin-left: 0; |
|
552 |
} |
|
553 |
||
554 |
.no-js .widefat thead .check-column input, |
|
555 |
.no-js .widefat tfoot .check-column input { |
|
556 |
display: none; |
|
557 |
} |
|
558 |
||
559 |
.widefat .num, |
|
560 |
.column-comments, |
|
561 |
.column-links, |
|
562 |
.column-posts { |
|
563 |
text-align: center; |
|
564 |
} |
|
565 |
||
566 |
.widefat th#comments { |
|
567 |
vertical-align: middle; |
|
568 |
} |
|
569 |
||
570 |
.wrap { |
|
571 |
margin: 10px 20px 0 2px; |
|
572 |
} |
|
573 |
||
9 | 574 |
.wrap.block-editor-no-js { |
575 |
padding-left: 20px; |
|
576 |
} |
|
577 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
578 |
.wrap > h2:first-child, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
579 |
.wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
580 |
.postbox .inside h2, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
581 |
.wrap h1 { |
5 | 582 |
font-size: 23px; |
583 |
font-weight: 400; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
584 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
585 |
padding: 9px 0 4px 0; |
9 | 586 |
line-height: 1.3; |
5 | 587 |
} |
588 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
589 |
.wrap h1.wp-heading-inline { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
590 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
591 |
margin-right: 5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
592 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
593 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
594 |
.wp-header-end { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
595 |
visibility: hidden; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
596 |
margin: -2px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
597 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
598 |
|
5 | 599 |
.subtitle { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
600 |
margin: 0; |
5 | 601 |
padding-left: 25px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
602 |
color: #555d66; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
603 |
font-size: 14px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
604 |
font-weight: 400; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
605 |
line-height: 1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
606 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
607 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
608 |
.wrap .add-new-h2, /* deprecated */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
609 |
.wrap .add-new-h2:active, /* deprecated */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
610 |
.wrap .page-title-action, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
611 |
.wrap .page-title-action:active { |
5 | 612 |
margin-left: 4px; |
613 |
padding: 4px 8px; |
|
614 |
position: relative; |
|
615 |
top: -3px; |
|
616 |
text-decoration: none; |
|
16 | 617 |
border: 1px solid #0071a1; |
5 | 618 |
border-radius: 2px; |
619 |
text-shadow: none; |
|
620 |
font-weight: 600; |
|
621 |
font-size: 13px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
622 |
line-height: normal; /* IE8-IE11 need this for buttons */ |
16 | 623 |
color: #0071a1; /* use the standard color used for buttons */ |
624 |
background: #f3f5f6; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
625 |
cursor: pointer; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
626 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
627 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
628 |
.wrap .wp-heading-inline + .page-title-action { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
629 |
margin-left: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
630 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
631 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
632 |
.wrap .add-new-h2:hover, /* deprecated */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
633 |
.wrap .page-title-action:hover { |
16 | 634 |
background: #f1f1f1; |
635 |
border-color: #016087; |
|
636 |
color: #016087; |
|
5 | 637 |
} |
638 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
639 |
/* lower specificity: color needs to be overridden by :hover and :active */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
640 |
.page-title-action:focus { |
16 | 641 |
color: #016087; |
642 |
} |
|
643 |
||
644 |
/* Dashicon for language options on General Settings and Profile screens */ |
|
645 |
.form-table th label[for="locale"] .dashicons, |
|
646 |
.form-table th label[for="WPLANG"] .dashicons { |
|
647 |
margin-left: 5px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
648 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
649 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
650 |
.wrap .page-title-action:focus { |
16 | 651 |
border-color: #007cba; |
652 |
box-shadow: 0 0 0 1px #007cba; |
|
9 | 653 |
/* Only visible in Windows High Contrast mode */ |
654 |
outline: 2px solid transparent; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
655 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
656 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
657 |
.wrap h1.long-header { |
5 | 658 |
padding-right: 0; |
659 |
} |
|
660 |
||
661 |
.wp-dialog { |
|
662 |
background-color: #fff; |
|
663 |
} |
|
664 |
||
665 |
.widgets-chooser ul, |
|
666 |
#widgets-left .widget-in-question .widget-top, |
|
667 |
#available-widgets .widget-top:hover, |
|
668 |
div#widgets-right .widget-top:hover, |
|
669 |
#widgets-left .widget-top:hover { |
|
670 |
border-color: #999; |
|
9 | 671 |
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); |
5 | 672 |
} |
673 |
||
674 |
.sorthelper { |
|
675 |
background-color: #ccf3fa; |
|
676 |
} |
|
677 |
||
678 |
.ac_match, |
|
679 |
.subsubsub a.current { |
|
680 |
color: #000; |
|
681 |
} |
|
682 |
||
683 |
.striped > tbody > :nth-child(odd), |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
684 |
ul.striped > :nth-child(odd), |
5 | 685 |
.alternate { |
686 |
background-color: #f9f9f9; |
|
687 |
} |
|
688 |
||
689 |
.bar { |
|
690 |
background-color: #e8e8e8; |
|
691 |
border-right-color: #99d; |
|
692 |
} |
|
693 |
||
694 |
/* Helper classes for plugins to leverage the active WordPress color scheme */ |
|
695 |
||
696 |
.highlight { |
|
697 |
background-color: #e4f2fd; |
|
698 |
color: #000; |
|
699 |
} |
|
700 |
||
701 |
.wp-ui-primary { |
|
702 |
color: #fff; |
|
703 |
background-color: #32373c; |
|
704 |
} |
|
705 |
.wp-ui-text-primary { |
|
706 |
color: #32373c; |
|
707 |
} |
|
708 |
||
709 |
.wp-ui-highlight { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
710 |
color: #fff; |
5 | 711 |
background-color: #1e8cbe; |
712 |
} |
|
713 |
.wp-ui-text-highlight { |
|
714 |
color: #1e8cbe; |
|
715 |
} |
|
716 |
||
717 |
.wp-ui-notification { |
|
718 |
color: #fff; |
|
719 |
background-color: #d54e21; |
|
720 |
} |
|
721 |
.wp-ui-text-notification { |
|
722 |
color: #d54e21; |
|
723 |
} |
|
724 |
||
725 |
.wp-ui-text-icon { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
726 |
color: #82878c; /* same as new icons */ |
5 | 727 |
} |
728 |
||
729 |
/* For emoji replacement images */ |
|
730 |
img.emoji { |
|
731 |
display: inline !important; |
|
732 |
border: none !important; |
|
733 |
height: 1em !important; |
|
734 |
width: 1em !important; |
|
735 |
margin: 0 .07em !important; |
|
736 |
vertical-align: -0.1em !important; |
|
737 |
background: none !important; |
|
738 |
padding: 0 !important; |
|
739 |
box-shadow: none !important; |
|
740 |
} |
|
741 |
||
742 |
/*------------------------------------------------------------------------------ |
|
743 |
1.0 - Text Styles |
|
744 |
------------------------------------------------------------------------------*/ |
|
745 |
||
746 |
.widget .widget-top, |
|
747 |
.postbox .hndle, |
|
748 |
.stuffbox .hndle, |
|
749 |
.control-section .accordion-section-title, |
|
750 |
.sidebar-name, |
|
751 |
#nav-menu-header, |
|
752 |
#nav-menu-footer, |
|
753 |
.menu-item-handle, |
|
754 |
.checkbox, |
|
755 |
.side-info, |
|
756 |
#your-profile #rich_editing, |
|
757 |
.widefat thead th, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
758 |
.widefat thead td, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
759 |
.widefat tfoot th, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
760 |
.widefat tfoot td { |
5 | 761 |
line-height: 1.4em; |
762 |
} |
|
763 |
||
764 |
.widget .widget-top, |
|
765 |
.menu-item-handle { |
|
766 |
background: #fafafa; |
|
767 |
color: #23282d; |
|
768 |
} |
|
769 |
||
770 |
.stuffbox .hndle { |
|
16 | 771 |
border-bottom: 1px solid #ccd0d4; |
772 |
} |
|
773 |
||
774 |
.quicktags { |
|
5 | 775 |
background-color: #ccc; |
776 |
color: #000; |
|
777 |
font-size: 12px; |
|
778 |
} |
|
779 |
||
780 |
.icon32 { |
|
781 |
display: none; |
|
782 |
} |
|
783 |
||
784 |
/* @todo can we combine these into a class or use an existing dashicon one? */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
785 |
.welcome-panel .welcome-panel-close:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
786 |
.tagchecklist .ntdelbutton .remove-tag-icon:before, |
5 | 787 |
#bulk-titles div a:before, |
788 |
.notice-dismiss:before { |
|
789 |
background: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
790 |
color: #72777c; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
791 |
content: "\f153"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
792 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
793 |
font: normal 16px/20px dashicons; |
5 | 794 |
speak: none; |
795 |
height: 20px; |
|
796 |
text-align: center; |
|
797 |
width: 20px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
798 |
-webkit-font-smoothing: antialiased; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
799 |
-moz-osx-font-smoothing: grayscale; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
800 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
801 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
802 |
.welcome-panel .welcome-panel-close:before { |
5 | 803 |
margin: 0; |
804 |
} |
|
805 |
||
806 |
#bulk-titles div a:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
807 |
margin: 1px 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
808 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
809 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
810 |
.tagchecklist .ntdelbutton .remove-tag-icon:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
811 |
margin-left: 2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
812 |
border-radius: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
813 |
color: #0073aa; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
814 |
/* vertically center the icon cross browsers */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
815 |
line-height: 1.28; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
816 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
817 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
818 |
.tagchecklist .ntdelbutton:focus { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
819 |
outline: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
820 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
821 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
822 |
.welcome-panel .welcome-panel-close:hover:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
823 |
.welcome-panel .welcome-panel-close:focus:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
824 |
.tagchecklist .ntdelbutton:hover .remove-tag-icon:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
825 |
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
826 |
#bulk-titles div a:hover:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
827 |
#bulk-titles div a:focus:before { |
5 | 828 |
color: #c00; |
829 |
} |
|
830 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
831 |
.tagchecklist .ntdelbutton:focus .remove-tag-icon:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
832 |
box-shadow: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
833 |
0 0 0 1px #5b9dd9, |
9 | 834 |
0 0 2px 1px rgba(30, 140, 190, 0.8); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
835 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
836 |
|
5 | 837 |
.key-labels label { |
838 |
line-height: 24px; |
|
839 |
} |
|
840 |
||
841 |
strong, b { |
|
842 |
font-weight: 600; |
|
843 |
} |
|
844 |
||
845 |
.pre { |
|
846 |
/* https://developer.mozilla.org/en-US/docs/CSS/white-space */ |
|
847 |
white-space: pre-wrap; /* css-3 */ |
|
848 |
word-wrap: break-word; /* IE 5.5 - 7 */ |
|
849 |
} |
|
850 |
||
851 |
.howto { |
|
852 |
color: #666; |
|
853 |
display: block; |
|
854 |
} |
|
855 |
||
856 |
p.install-help { |
|
857 |
margin: 8px 0; |
|
858 |
font-style: italic; |
|
859 |
} |
|
860 |
||
861 |
.no-break { |
|
862 |
white-space: nowrap; |
|
863 |
} |
|
864 |
||
865 |
hr { |
|
866 |
border: 0; |
|
867 |
border-top: 1px solid #ddd; |
|
868 |
border-bottom: 1px solid #fafafa; |
|
869 |
} |
|
870 |
||
871 |
.row-actions span.delete a, |
|
872 |
.row-actions span.trash a, |
|
873 |
.row-actions span.spam a, |
|
874 |
.plugins a.delete, |
|
875 |
#all-plugins-table .plugins a.delete, |
|
876 |
#search-plugins-table .plugins a.delete, |
|
877 |
.submitbox .submitdelete, |
|
878 |
#media-items a.delete, |
|
879 |
#media-items a.delete-permanently, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
880 |
#nav-menu-footer .menu-delete, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
881 |
#delete-link a.delete { |
5 | 882 |
color: #a00; |
883 |
} |
|
884 |
||
885 |
abbr.required, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
886 |
span.required, |
5 | 887 |
.file-error, |
888 |
.row-actions .delete a:hover, |
|
889 |
.row-actions .trash a:hover, |
|
890 |
.row-actions .spam a:hover, |
|
891 |
.plugins a.delete:hover, |
|
892 |
#all-plugins-table .plugins a.delete:hover, |
|
893 |
#search-plugins-table .plugins a.delete:hover, |
|
894 |
.submitbox .submitdelete:hover, |
|
895 |
#media-items a.delete:hover, |
|
896 |
#media-items a.delete-permanently:hover, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
897 |
#nav-menu-footer .menu-delete:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
898 |
#delete-link a.delete:hover { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
899 |
color: #dc3232; |
5 | 900 |
border: none; |
901 |
} |
|
902 |
||
903 |
/*------------------------------------------------------------------------------ |
|
904 |
3.0 - Actions |
|
905 |
------------------------------------------------------------------------------*/ |
|
906 |
||
907 |
#major-publishing-actions { |
|
908 |
padding: 10px; |
|
909 |
clear: both; |
|
910 |
border-top: 1px solid #ddd; |
|
911 |
background: #f5f5f5; |
|
912 |
} |
|
913 |
||
914 |
#delete-action { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
915 |
float: left; |
16 | 916 |
line-height: 2.30769231; /* 30px */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
917 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
918 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
919 |
#delete-link { |
16 | 920 |
line-height: 2.30769231; /* 30px */ |
5 | 921 |
vertical-align: middle; |
922 |
text-align: left; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
923 |
margin-left: 8px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
924 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
925 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
926 |
#delete-link a { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
927 |
text-decoration: none; |
5 | 928 |
} |
929 |
||
930 |
#publishing-action { |
|
931 |
text-align: right; |
|
932 |
float: right; |
|
9 | 933 |
line-height: 1.9; |
5 | 934 |
} |
935 |
||
936 |
#publishing-action .spinner { |
|
16 | 937 |
float: none; |
938 |
margin-top: 5px; |
|
5 | 939 |
} |
940 |
||
941 |
#misc-publishing-actions { |
|
942 |
padding: 6px 0 0; |
|
943 |
} |
|
944 |
||
945 |
.misc-pub-section { |
|
946 |
padding: 6px 10px 8px; |
|
947 |
} |
|
948 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
949 |
.misc-pub-filename { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
950 |
word-wrap: break-word; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
951 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
952 |
|
5 | 953 |
#minor-publishing-actions { |
954 |
padding: 10px 10px 0 10px; |
|
955 |
text-align: right; |
|
956 |
} |
|
957 |
||
958 |
#save-post { |
|
959 |
float: left; |
|
960 |
} |
|
961 |
||
962 |
.preview { |
|
963 |
float: right; |
|
964 |
} |
|
965 |
||
966 |
#sticky-span { |
|
967 |
margin-left: 18px; |
|
968 |
} |
|
969 |
||
970 |
.approve, |
|
971 |
.unapproved .unapprove { |
|
972 |
display: none; |
|
973 |
} |
|
974 |
||
975 |
.unapproved .approve, |
|
976 |
.spam .approve, |
|
977 |
.trash .approve { |
|
978 |
display: inline; |
|
979 |
} |
|
980 |
||
981 |
td.action-links, |
|
982 |
th.action-links { |
|
983 |
text-align: right; |
|
984 |
} |
|
985 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
986 |
#misc-publishing-actions .notice { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
987 |
margin-left: 10px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
988 |
margin-right: 10px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
989 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
990 |
|
5 | 991 |
/* Filter bar */ |
992 |
.wp-filter { |
|
993 |
display: inline-block; |
|
994 |
position: relative; |
|
995 |
box-sizing: border-box; |
|
996 |
margin: 12px 0 25px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
997 |
padding: 0 10px; |
5 | 998 |
width: 100%; |
9 | 999 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
16 | 1000 |
border: 1px solid #ccd0d4; |
5 | 1001 |
background: #fff; |
1002 |
color: #555; |
|
1003 |
font-size: 13px; |
|
1004 |
} |
|
1005 |
||
1006 |
.wp-filter a { |
|
1007 |
text-decoration: none; |
|
1008 |
} |
|
1009 |
||
1010 |
.filter-count { |
|
1011 |
display: inline-block; |
|
1012 |
vertical-align: middle; |
|
1013 |
min-width: 4em; |
|
1014 |
} |
|
1015 |
||
1016 |
.title-count, |
|
1017 |
.filter-count .count { |
|
1018 |
display: inline-block; |
|
1019 |
position: relative; |
|
1020 |
top: -1px; |
|
1021 |
padding: 4px 10px; |
|
1022 |
border-radius: 30px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1023 |
background: #72777c; |
5 | 1024 |
color: #fff; |
1025 |
font-size: 14px; |
|
1026 |
font-weight: 600; |
|
1027 |
} |
|
1028 |
||
1029 |
/* not a part of filter bar, but derived from it, so here for now */ |
|
1030 |
.title-count { |
|
1031 |
display: inline; |
|
1032 |
top: -3px; |
|
1033 |
margin-left: 5px; |
|
1034 |
margin-right: 20px; |
|
1035 |
} |
|
1036 |
||
1037 |
.filter-items { |
|
1038 |
float: left; |
|
1039 |
} |
|
1040 |
||
1041 |
.filter-links { |
|
1042 |
display: inline-block; |
|
1043 |
margin: 0; |
|
1044 |
} |
|
1045 |
||
1046 |
.filter-links li { |
|
1047 |
display: inline-block; |
|
1048 |
margin: 0; |
|
1049 |
} |
|
1050 |
||
1051 |
.filter-links li > a { |
|
1052 |
display: inline-block; |
|
1053 |
margin: 0 10px; |
|
1054 |
padding: 15px 0; |
|
1055 |
border-bottom: 4px solid #fff; |
|
1056 |
color: #666; |
|
1057 |
cursor: pointer; |
|
1058 |
} |
|
1059 |
||
1060 |
.filter-links .current { |
|
1061 |
box-shadow: none; |
|
1062 |
border-bottom: 4px solid #666; |
|
1063 |
color: #23282d; |
|
1064 |
} |
|
1065 |
||
1066 |
.filter-links li > a:hover, |
|
1067 |
.filter-links li > a:focus, |
|
1068 |
.show-filters .filter-links a.current:hover, |
|
1069 |
.show-filters .filter-links a.current:focus { |
|
16 | 1070 |
color: #006799; |
5 | 1071 |
} |
1072 |
||
1073 |
.wp-filter .search-form { |
|
1074 |
float: right; |
|
1075 |
margin: 10px 0; |
|
1076 |
} |
|
1077 |
||
1078 |
.wp-filter .search-form input[type="search"] { |
|
16 | 1079 |
margin: 1px 0; |
5 | 1080 |
width: 280px; |
1081 |
max-width: 100%; |
|
1082 |
} |
|
1083 |
||
1084 |
.wp-filter .search-form select { |
|
1085 |
margin: 0; |
|
16 | 1086 |
} |
1087 |
||
1088 |
/* Use flexbox only on the plugins install page. The `filter-links` and search form children will become flex items. */ |
|
1089 |
.plugin-install-php .wp-filter { |
|
1090 |
display: flex; |
|
1091 |
flex-wrap: wrap; |
|
1092 |
justify-content: space-between; |
|
1093 |
align-items: center; |
|
5 | 1094 |
} |
1095 |
||
1096 |
.wp-filter .search-form.search-plugins { |
|
16 | 1097 |
/* This element is a flex item: the inherited float won't have any effect. */ |
1098 |
margin-top: 0; |
|
1099 |
} |
|
1100 |
||
1101 |
.wp-filter .search-form.search-plugins select, |
|
1102 |
.wp-filter .search-form.search-plugins .wp-filter-search { |
|
5 | 1103 |
display: inline-block; |
16 | 1104 |
margin-top: 10px; |
1105 |
vertical-align: top; |
|
5 | 1106 |
} |
1107 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1108 |
.wp-filter .button.drawer-toggle { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1109 |
margin: 10px 9px 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1110 |
padding: 0 10px 0 6px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1111 |
border-color: transparent; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1112 |
background-color: transparent; |
5 | 1113 |
color: #666; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1114 |
vertical-align: baseline; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1115 |
box-shadow: none; |
5 | 1116 |
} |
1117 |
||
1118 |
.wp-filter .drawer-toggle:before { |
|
1119 |
content: "\f111"; |
|
1120 |
margin: 0 5px 0 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1121 |
color: #72777c; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1122 |
font: normal 16px/1 dashicons; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1123 |
vertical-align: text-bottom; |
5 | 1124 |
-webkit-font-smoothing: antialiased; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1125 |
-moz-osx-font-smoothing: grayscale; |
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 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1128 |
.wp-filter .button.drawer-toggle:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1129 |
.wp-filter .drawer-toggle:hover:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1130 |
.wp-filter .button.drawer-toggle:focus, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1131 |
.wp-filter .drawer-toggle:focus:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1132 |
background-color: transparent; |
16 | 1133 |
color: #006799; |
5 | 1134 |
} |
1135 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1136 |
.wp-filter .button.drawer-toggle:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1137 |
.wp-filter .button.drawer-toggle:focus:active { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1138 |
border-color: transparent; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1139 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1140 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1141 |
.wp-filter .button.drawer-toggle:focus { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1142 |
border-color: #5b9dd9; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1143 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1144 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1145 |
.wp-filter .button.drawer-toggle:active { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1146 |
background: transparent; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1147 |
box-shadow: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1148 |
transform: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1149 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1150 |
|
5 | 1151 |
.wp-filter .drawer-toggle.current:before { |
1152 |
color: #fff; |
|
1153 |
} |
|
1154 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1155 |
.filter-drawer, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1156 |
.wp-filter .favorites-form { |
5 | 1157 |
display: none; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1158 |
margin: 0 -10px 0 -20px; |
5 | 1159 |
padding: 20px; |
1160 |
border-top: 1px solid #eee; |
|
1161 |
background: #fafafa; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1162 |
overflow: hidden; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1163 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1164 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1165 |
.show-filters .filter-drawer, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1166 |
.show-favorites-form .favorites-form { |
5 | 1167 |
display: block; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1168 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1169 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1170 |
.show-filters .filter-links a.current { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1171 |
border-bottom: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1172 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1173 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1174 |
.show-filters .wp-filter .button.drawer-toggle { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1175 |
border-radius: 2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1176 |
background: #72777c; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1177 |
color: #fff; |
5 | 1178 |
} |
1179 |
||
1180 |
.show-filters .wp-filter .drawer-toggle:hover, |
|
1181 |
.show-filters .wp-filter .drawer-toggle:focus { |
|
1182 |
background: rgb(46, 162, 204); |
|
1183 |
} |
|
1184 |
||
1185 |
.show-filters .wp-filter .drawer-toggle:before { |
|
1186 |
color: #fff; |
|
1187 |
} |
|
1188 |
||
1189 |
.filter-group { |
|
1190 |
box-sizing: border-box; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1191 |
position: relative; |
5 | 1192 |
float: left; |
1193 |
margin: 0 1% 0 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1194 |
padding: 20px 10px 10px; |
5 | 1195 |
width: 24%; |
1196 |
background: #fff; |
|
1197 |
border: 1px solid #e5e5e5; |
|
9 | 1198 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
5 | 1199 |
} |
1200 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1201 |
.filter-group legend { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1202 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1203 |
top: 10px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1204 |
display: block; |
5 | 1205 |
margin: 0; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1206 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1207 |
font-size: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1208 |
font-weight: 600; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1209 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1210 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1211 |
.filter-drawer .filter-group-feature { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1212 |
margin: 28px 0 0; |
5 | 1213 |
list-style-type: none; |
1214 |
font-size: 12px; |
|
1215 |
} |
|
1216 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1217 |
.filter-drawer .filter-group-feature input, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1218 |
.filter-drawer .filter-group-feature label { |
9 | 1219 |
line-height: 1.4; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1220 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1221 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1222 |
.filter-drawer .filter-group-feature input { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1223 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1224 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1225 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1226 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1227 |
.filter-group .filter-group-feature label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1228 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1229 |
margin: 14px 0px 14px 23px; |
5 | 1230 |
} |
1231 |
||
1232 |
.filter-drawer .buttons { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1233 |
clear: both; |
5 | 1234 |
margin-bottom: 20px; |
1235 |
} |
|
1236 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1237 |
.filter-drawer .filter-group + .buttons { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1238 |
margin-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1239 |
padding-top: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1240 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1241 |
|
5 | 1242 |
.filter-drawer .buttons .button span { |
1243 |
display: inline-block; |
|
1244 |
opacity: 0.8; |
|
1245 |
font-size: 12px; |
|
1246 |
text-indent: 10px; |
|
1247 |
} |
|
1248 |
||
1249 |
.wp-filter .button.clear-filters { |
|
1250 |
display: none; |
|
1251 |
margin-left: 10px; |
|
1252 |
} |
|
1253 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1254 |
.wp-filter .button-link.edit-filters { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1255 |
padding: 0 5px; |
9 | 1256 |
line-height: 2.2; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1257 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1258 |
|
5 | 1259 |
.filtered-by { |
1260 |
display: none; |
|
1261 |
margin: 0; |
|
1262 |
} |
|
1263 |
||
1264 |
.filtered-by > span { |
|
1265 |
font-weight: 600; |
|
1266 |
} |
|
1267 |
||
1268 |
.filtered-by a { |
|
1269 |
margin-left: 10px; |
|
1270 |
} |
|
1271 |
||
1272 |
.filtered-by .tags { |
|
1273 |
display: inline; |
|
1274 |
} |
|
1275 |
||
1276 |
.filtered-by .tag { |
|
1277 |
margin: 0 5px; |
|
1278 |
padding: 4px 8px; |
|
1279 |
border: 1px solid #e5e5e5; |
|
9 | 1280 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
5 | 1281 |
background: #fff; |
1282 |
font-size: 11px; |
|
1283 |
} |
|
1284 |
||
1285 |
.filters-applied .filter-group, |
|
1286 |
.filters-applied .filter-drawer .buttons, |
|
1287 |
.filters-applied .filter-drawer br { |
|
16 | 1288 |
display: none; |
5 | 1289 |
} |
1290 |
||
1291 |
.filters-applied .filtered-by { |
|
1292 |
display: block; |
|
1293 |
} |
|
1294 |
||
1295 |
.filters-applied .filter-drawer { |
|
1296 |
padding: 20px; |
|
1297 |
} |
|
1298 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1299 |
.show-filters .favorites-form, |
5 | 1300 |
.show-filters .content-filterable, |
1301 |
.show-filters.filters-applied.loading-content .content-filterable, |
|
1302 |
.loading-content .content-filterable, |
|
1303 |
.error .content-filterable { |
|
1304 |
display: none; |
|
1305 |
} |
|
1306 |
||
1307 |
.show-filters.filters-applied .content-filterable { |
|
1308 |
display: block; |
|
1309 |
} |
|
1310 |
||
1311 |
.loading-content .spinner { |
|
1312 |
display: block; |
|
1313 |
margin: 40px auto 0; |
|
1314 |
float: none; |
|
1315 |
} |
|
1316 |
||
1317 |
@media only screen and (max-width: 1120px) { |
|
1318 |
.filter-drawer { |
|
1319 |
border-bottom: 1px solid #eee; |
|
1320 |
} |
|
1321 |
||
1322 |
.filter-group { |
|
1323 |
margin-bottom: 0; |
|
1324 |
margin-top: 5px; |
|
1325 |
width: 100%; |
|
1326 |
} |
|
1327 |
||
1328 |
.filter-group li { |
|
1329 |
margin: 10px 0; |
|
1330 |
} |
|
1331 |
} |
|
1332 |
||
1333 |
@media only screen and (max-width: 1000px) { |
|
1334 |
.filter-items { |
|
1335 |
float: none; |
|
1336 |
} |
|
1337 |
||
1338 |
.wp-filter .media-toolbar-primary, |
|
1339 |
.wp-filter .media-toolbar-secondary, |
|
1340 |
.wp-filter .search-form { |
|
1341 |
float: none; /* Remove float from media-views.css */ |
|
1342 |
position: relative; |
|
1343 |
max-width: 100%; |
|
1344 |
} |
|
1345 |
} |
|
1346 |
||
1347 |
@media only screen and (max-width: 782px) { |
|
1348 |
.filter-group li { |
|
1349 |
padding: 0; |
|
1350 |
width: 50%; |
|
1351 |
} |
|
1352 |
} |
|
1353 |
||
1354 |
@media only screen and (max-width: 320px) { |
|
1355 |
.filter-count { |
|
1356 |
display: none; |
|
1357 |
} |
|
1358 |
||
1359 |
.wp-filter .drawer-toggle { |
|
1360 |
margin: 10px 0; |
|
1361 |
} |
|
1362 |
||
1363 |
.filter-group li, |
|
1364 |
.wp-filter .search-form input[type="search"] { |
|
1365 |
width: 100%; |
|
1366 |
} |
|
1367 |
} |
|
1368 |
||
1369 |
/*------------------------------------------------------------------------------ |
|
1370 |
4.0 - Notifications |
|
1371 |
------------------------------------------------------------------------------*/ |
|
1372 |
||
1373 |
.notice, |
|
1374 |
div.updated, |
|
1375 |
div.error { |
|
1376 |
background: #fff; |
|
16 | 1377 |
border: 1px solid #ccd0d4; |
1378 |
border-left-width: 4px; |
|
1379 |
box-shadow: 0 1px 1px rgba(0,0,0,.04); |
|
5 | 1380 |
margin: 5px 15px 2px; |
1381 |
padding: 1px 12px; |
|
1382 |
} |
|
1383 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1384 |
div[class="update-message"] { /* back-compat for pre-4.6 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1385 |
padding: 0.5em 12px 0.5em 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1386 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1387 |
|
5 | 1388 |
.notice p, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1389 |
.notice-title, |
5 | 1390 |
div.updated p, |
1391 |
div.error p, |
|
1392 |
.form-table td .notice p { |
|
1393 |
margin: 0.5em 0; |
|
1394 |
padding: 2px; |
|
1395 |
} |
|
1396 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1397 |
.error a { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1398 |
text-decoration: underline; |
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 |
.updated a { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1402 |
padding-bottom: 2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1403 |
} |
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 |
.notice-alt { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1406 |
box-shadow: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1407 |
} |
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 |
.notice-large { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1410 |
padding: 10px 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1411 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1412 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1413 |
.notice-title { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1414 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1415 |
color: #23282d; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1416 |
font-size: 18px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1417 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1418 |
|
5 | 1419 |
.wp-core-ui .notice.is-dismissible { |
1420 |
padding-right: 38px; |
|
1421 |
position: relative; |
|
1422 |
} |
|
1423 |
||
1424 |
.notice-dismiss { |
|
1425 |
position: absolute; |
|
1426 |
top: 0; |
|
1427 |
right: 1px; |
|
1428 |
border: none; |
|
1429 |
margin: 0; |
|
1430 |
padding: 9px; |
|
1431 |
background: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1432 |
color: #72777c; |
5 | 1433 |
cursor: pointer; |
1434 |
} |
|
1435 |
||
1436 |
.notice-dismiss:hover:before, |
|
1437 |
.notice-dismiss:active:before, |
|
1438 |
.notice-dismiss:focus:before { |
|
1439 |
color: #c00; |
|
1440 |
} |
|
1441 |
||
1442 |
.notice-dismiss:focus { |
|
1443 |
outline: none; |
|
16 | 1444 |
box-shadow: |
1445 |
0 0 0 1px #5b9dd9, |
|
1446 |
0 0 2px 1px rgba(30, 140, 190, 0.8); |
|
5 | 1447 |
} |
1448 |
||
1449 |
.notice-success, |
|
1450 |
div.updated { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1451 |
border-left-color: #46b450; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1452 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1453 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1454 |
.notice-success.notice-alt { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1455 |
background-color: #ecf7ed; |
5 | 1456 |
} |
1457 |
||
1458 |
.notice-warning { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1459 |
border-left-color: #ffb900; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1460 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1461 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1462 |
.notice-warning.notice-alt { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1463 |
background-color: #fff8e5; |
5 | 1464 |
} |
1465 |
||
1466 |
.notice-error, |
|
1467 |
div.error { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1468 |
border-left-color: #dc3232; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1469 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1470 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1471 |
.notice-error.notice-alt { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1472 |
background-color: #fbeaea; |
5 | 1473 |
} |
1474 |
||
1475 |
.notice-info { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1476 |
border-left-color: #00a0d2; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1477 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1478 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1479 |
.notice-info.notice-alt { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1480 |
background-color: #e5f5fa; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1481 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1482 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1483 |
.update-message p:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1484 |
.updating-message p:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1485 |
.updated-message p:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1486 |
.import-php .updating-message:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1487 |
.button.updating-message:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1488 |
.button.updated-message:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1489 |
.button.installed:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1490 |
.button.installing:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1491 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1492 |
font: normal 20px/1 'dashicons'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1493 |
-webkit-font-smoothing: antialiased; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1494 |
-moz-osx-font-smoothing: grayscale; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1495 |
vertical-align: top; |
5 | 1496 |
} |
1497 |
||
1498 |
.wrap .notice, |
|
1499 |
.wrap div.updated, |
|
1500 |
.wrap div.error, |
|
1501 |
.media-upload-form .notice, |
|
1502 |
.media-upload-form div.error { |
|
1503 |
margin: 5px 0 15px; |
|
1504 |
} |
|
1505 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1506 |
.wrap #templateside .notice { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1507 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1508 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1509 |
padding: 5px 8px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1510 |
font-weight: 600; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1511 |
text-decoration: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1512 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1513 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1514 |
.wrap #templateside span.notice { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1515 |
margin-left: -12px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1516 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1517 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1518 |
#templateside li.notice a { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1519 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1520 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1521 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1522 |
/* Update icon. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1523 |
.update-message p:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1524 |
.updating-message p:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1525 |
.import-php .updating-message:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1526 |
.button.updating-message:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1527 |
.button.installing:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1528 |
color: #f56e28; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1529 |
content: "\f463"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1530 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1531 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1532 |
/* Spins the update icon. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1533 |
.updating-message p:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1534 |
.import-php .updating-message:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1535 |
.button.updating-message:before, |
16 | 1536 |
.button.installing:before, |
1537 |
.plugins .column-auto-updates .dashicons-update.spin, |
|
1538 |
.theme-overlay .theme-autoupdate .dashicons-update.spin { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1539 |
animation: rotation 2s infinite linear; |
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 |
|
16 | 1542 |
.theme-overlay .theme-autoupdate .dashicons-update.spin { |
1543 |
margin-right: 3px; |
|
1544 |
} |
|
1545 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1546 |
/* Updated icon (check mark). */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1547 |
.updated-message p:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1548 |
.installed p:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1549 |
.button.updated-message:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1550 |
color: #79ba49; |
9 | 1551 |
content: "\f147"; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1552 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1553 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1554 |
/* Error icon. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1555 |
.update-message.notice-error p:before { |
9 | 1556 |
color: #dc3232; |
1557 |
content: "\f534"; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1558 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1559 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1560 |
.wrap .notice p:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1561 |
.import-php .updating-message:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1562 |
margin-right: 6px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1563 |
vertical-align: bottom; |
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 |
|
5 | 1566 |
#update-nag, |
1567 |
.update-nag { |
|
1568 |
display: inline-block; |
|
9 | 1569 |
line-height: 1.4; |
5 | 1570 |
padding: 11px 15px; |
1571 |
font-size: 14px; |
|
1572 |
margin: 25px 20px 0 2px; |
|
1573 |
} |
|
1574 |
||
1575 |
ul#dismissed-updates { |
|
1576 |
display: none; |
|
1577 |
} |
|
1578 |
||
9 | 1579 |
#dismissed-updates li > p { |
1580 |
margin-top: 0; |
|
1581 |
} |
|
1582 |
||
1583 |
#dismiss, |
|
1584 |
#undismiss { |
|
1585 |
margin-left: 0.5em; |
|
1586 |
} |
|
1587 |
||
5 | 1588 |
form.upgrade { |
1589 |
margin-top: 8px; |
|
1590 |
} |
|
1591 |
||
1592 |
form.upgrade .hint { |
|
1593 |
font-style: italic; |
|
1594 |
font-size: 85%; |
|
1595 |
margin: -0.5em 0 2em 0; |
|
1596 |
} |
|
1597 |
||
1598 |
.update-php .spinner { |
|
1599 |
float: none; |
|
1600 |
margin: -4px 0; |
|
1601 |
} |
|
1602 |
||
1603 |
#ajax-loading, |
|
1604 |
.ajax-loading, |
|
1605 |
.ajax-feedback, |
|
1606 |
.imgedit-wait-spin, |
|
1607 |
.list-ajax-loading { /* deprecated */ |
|
1608 |
visibility: hidden; |
|
1609 |
} |
|
1610 |
||
1611 |
#ajax-response.alignleft { |
|
1612 |
margin-left: 2em; |
|
1613 |
} |
|
1614 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1615 |
.button.updating-message:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1616 |
.button.updated-message:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1617 |
.button.installed:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1618 |
.button.installing:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1619 |
margin: 3px 5px 0 -2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1620 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1621 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1622 |
.button-primary.updating-message:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1623 |
color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1624 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1625 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1626 |
.button-primary.updated-message:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1627 |
color: #66c6e4; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1628 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1629 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1630 |
.button.updated-message { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1631 |
transition-property: border, background, color; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1632 |
transition-duration: .05s; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1633 |
transition-timing-function: ease-in-out; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1634 |
} |
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 |
@media aural { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1637 |
.wrap .notice p:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1638 |
.button.installing:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1639 |
.button.installed:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1640 |
.update-message p:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1641 |
speak: none; |
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 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1645 |
|
5 | 1646 |
/* @todo: this does not need its own section anymore */ |
1647 |
/*------------------------------------------------------------------------------ |
|
1648 |
6.0 - Admin Header |
|
1649 |
------------------------------------------------------------------------------*/ |
|
1650 |
#adminmenu a, |
|
1651 |
#taglist a, |
|
1652 |
#catlist a { |
|
1653 |
text-decoration: none; |
|
1654 |
} |
|
1655 |
||
1656 |
/*------------------------------------------------------------------------------ |
|
1657 |
6.1 - Screen Options Tabs |
|
1658 |
------------------------------------------------------------------------------*/ |
|
1659 |
||
1660 |
#screen-options-wrap, |
|
1661 |
#contextual-help-wrap { |
|
1662 |
margin: 0; |
|
1663 |
padding: 8px 20px 12px; |
|
1664 |
position: relative; |
|
1665 |
} |
|
1666 |
||
1667 |
#contextual-help-wrap { |
|
1668 |
overflow: auto; |
|
16 | 1669 |
margin-left: 0; |
5 | 1670 |
} |
1671 |
||
1672 |
#screen-meta-links { |
|
9 | 1673 |
float: right; |
5 | 1674 |
margin: 0 20px 0 0; |
1675 |
} |
|
1676 |
||
1677 |
/* screen options and help tabs revert */ |
|
1678 |
#screen-meta { |
|
1679 |
display: none; |
|
1680 |
margin: 0 20px -1px 0px; |
|
1681 |
position: relative; |
|
1682 |
background-color: #fff; |
|
16 | 1683 |
border: 1px solid #ccd0d4; |
5 | 1684 |
border-top: none; |
16 | 1685 |
box-shadow: 0 0 0 transparent; |
5 | 1686 |
} |
1687 |
||
1688 |
#screen-options-link-wrap, |
|
1689 |
#contextual-help-link-wrap { |
|
9 | 1690 |
float: left; |
5 | 1691 |
margin: 0 0 0 6px; |
1692 |
} |
|
1693 |
||
1694 |
#screen-meta-links .screen-meta-toggle { |
|
1695 |
position: relative; |
|
1696 |
top: 0; |
|
1697 |
} |
|
1698 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1699 |
#screen-meta-links .show-settings { |
16 | 1700 |
border: 1px solid #ccd0d4; |
9 | 1701 |
border-top: none; |
1702 |
height: auto; |
|
1703 |
margin-bottom: 0; |
|
1704 |
padding: 3px 6px 3px 16px; |
|
1705 |
background: #fff; |
|
16 | 1706 |
border-radius: 0 0 4px 4px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1707 |
color: #72777c; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1708 |
line-height: 1.7; |
16 | 1709 |
box-shadow: 0 0 0 transparent; |
1710 |
transition: box-shadow 0.1s linear; |
|
7
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 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1713 |
#screen-meta-links .show-settings:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1714 |
#screen-meta-links .show-settings:active, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1715 |
#screen-meta-links .show-settings:focus { |
5 | 1716 |
color: #32373c; |
1717 |
} |
|
1718 |
||
9 | 1719 |
#screen-meta-links .show-settings:focus { |
1720 |
border-color: #5b9dd9; |
|
1721 |
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8); |
|
1722 |
} |
|
1723 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1724 |
#screen-meta-links .show-settings:active { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1725 |
transform: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1726 |
} |
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 |
#screen-meta-links .show-settings:after { |
5 | 1729 |
right: 0; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1730 |
content: "\f140"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1731 |
font: normal 20px/1 dashicons; |
5 | 1732 |
speak: none; |
1733 |
display: inline-block; |
|
1734 |
padding: 0 5px 0 0; |
|
1735 |
bottom: 2px; |
|
1736 |
position: relative; |
|
1737 |
vertical-align: bottom; |
|
1738 |
-webkit-font-smoothing: antialiased; |
|
1739 |
-moz-osx-font-smoothing: grayscale; |
|
16 | 1740 |
text-decoration: none; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1741 |
color: #72777c; |
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 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1744 |
#screen-meta-links .screen-meta-active:after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1745 |
content: "\f142"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1746 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1747 |
|
5 | 1748 |
/* end screen options and help tabs */ |
1749 |
||
1750 |
.toggle-arrow { |
|
1751 |
background-repeat: no-repeat; |
|
1752 |
background-position: top left; |
|
1753 |
background-color: transparent; |
|
1754 |
height: 22px; |
|
1755 |
line-height: 22px; |
|
1756 |
display: block; |
|
1757 |
} |
|
1758 |
||
1759 |
.toggle-arrow-active { |
|
1760 |
background-position: bottom left; |
|
1761 |
} |
|
1762 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1763 |
#screen-options-wrap h5, /* Back-compat for old plugins */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1764 |
#screen-options-wrap legend, |
5 | 1765 |
#contextual-help-wrap h5 { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1766 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1767 |
padding: 8px 0; |
9 | 1768 |
font-size: 13px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1769 |
font-weight: 600; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1770 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1771 |
|
5 | 1772 |
.metabox-prefs label { |
1773 |
display: inline-block; |
|
1774 |
padding-right: 15px; |
|
9 | 1775 |
line-height: 2.35; |
5 | 1776 |
} |
1777 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1778 |
#number-of-columns { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1779 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1780 |
vertical-align: middle; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1781 |
line-height: 30px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1782 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1783 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1784 |
.metabox-prefs input[type=checkbox] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1785 |
margin-top: 0; |
5 | 1786 |
margin-right: 6px; |
1787 |
} |
|
1788 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1789 |
.metabox-prefs label input, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1790 |
.metabox-prefs label input[type=checkbox] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1791 |
margin: -4px 5px 0 0; |
5 | 1792 |
} |
1793 |
||
1794 |
.metabox-prefs .columns-prefs label input { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1795 |
margin: -1px 2px 0 0; |
5 | 1796 |
} |
1797 |
||
1798 |
.metabox-prefs label a { |
|
1799 |
display: none; |
|
1800 |
} |
|
1801 |
||
1802 |
.metabox-prefs .screen-options input, |
|
1803 |
.metabox-prefs .screen-options label { |
|
1804 |
margin-top: 0; |
|
1805 |
margin-bottom: 0; |
|
1806 |
vertical-align: middle; |
|
1807 |
} |
|
1808 |
||
1809 |
.metabox-prefs .screen-options .screen-per-page { |
|
1810 |
margin-right: 15px; |
|
1811 |
} |
|
1812 |
||
1813 |
.metabox-prefs .screen-options label { |
|
9 | 1814 |
line-height: 2.2; |
5 | 1815 |
padding-right: 0; |
1816 |
} |
|
1817 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1818 |
.screen-options + .screen-options { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1819 |
margin-top: 10px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1820 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1821 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1822 |
.metabox-prefs .submit { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1823 |
margin-top: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1824 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1825 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1826 |
|
5 | 1827 |
/*------------------------------------------------------------------------------ |
1828 |
6.2 - Help Menu |
|
1829 |
------------------------------------------------------------------------------*/ |
|
1830 |
||
1831 |
#contextual-help-wrap { |
|
1832 |
padding: 0; |
|
1833 |
} |
|
1834 |
||
1835 |
#contextual-help-columns { |
|
1836 |
position: relative; |
|
1837 |
} |
|
1838 |
||
1839 |
#contextual-help-back { |
|
1840 |
position: absolute; |
|
1841 |
top: 0; |
|
1842 |
bottom: 0; |
|
1843 |
left: 150px; |
|
1844 |
right: 170px; |
|
16 | 1845 |
border: 1px solid #ccd0d4; |
5 | 1846 |
border-top: none; |
1847 |
border-bottom: none; |
|
1848 |
background: #f6fbfd; |
|
1849 |
} |
|
1850 |
||
1851 |
#contextual-help-wrap.no-sidebar #contextual-help-back { |
|
1852 |
right: 0; |
|
1853 |
border-right-width: 0; |
|
1854 |
border-bottom-right-radius: 2px; |
|
1855 |
} |
|
1856 |
||
1857 |
.contextual-help-tabs { |
|
1858 |
float: left; |
|
1859 |
width: 150px; |
|
1860 |
margin: 0; |
|
1861 |
} |
|
1862 |
||
1863 |
.contextual-help-tabs ul { |
|
1864 |
margin: 1em 0; |
|
1865 |
} |
|
1866 |
||
1867 |
.contextual-help-tabs li { |
|
1868 |
margin-bottom: 0; |
|
1869 |
list-style-type: none; |
|
1870 |
border-style: solid; |
|
1871 |
border-width: 0 0 0 2px; |
|
1872 |
border-color: transparent; |
|
1873 |
} |
|
1874 |
||
1875 |
.contextual-help-tabs a { |
|
1876 |
display: block; |
|
1877 |
padding: 5px 5px 5px 12px; |
|
9 | 1878 |
line-height: 1.4; |
5 | 1879 |
text-decoration: none; |
1880 |
border: 1px solid transparent; |
|
1881 |
border-right: none; |
|
1882 |
border-left: none; |
|
1883 |
} |
|
1884 |
||
1885 |
.contextual-help-tabs a:hover { |
|
1886 |
color: #32373c; |
|
1887 |
} |
|
1888 |
||
1889 |
.contextual-help-tabs .active { |
|
1890 |
padding: 0; |
|
1891 |
margin: 0 -1px 0 0; |
|
1892 |
border-left: 2px solid #00a0d2; |
|
1893 |
background: #f6fbfd; |
|
9 | 1894 |
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02); |
5 | 1895 |
} |
1896 |
||
1897 |
.contextual-help-tabs .active a { |
|
16 | 1898 |
border-color: #ccd0d4; |
5 | 1899 |
color: #32373c; |
1900 |
} |
|
1901 |
||
1902 |
.contextual-help-tabs-wrap { |
|
1903 |
padding: 0 20px; |
|
1904 |
overflow: auto; |
|
1905 |
} |
|
1906 |
||
1907 |
.help-tab-content { |
|
1908 |
display: none; |
|
1909 |
margin: 0 22px 12px 0; |
|
9 | 1910 |
line-height: 1.6; |
5 | 1911 |
} |
1912 |
||
1913 |
.help-tab-content.active { |
|
1914 |
display: block; |
|
1915 |
} |
|
1916 |
||
1917 |
.help-tab-content ul li { |
|
1918 |
list-style-type: disc; |
|
1919 |
margin-left: 18px; |
|
1920 |
} |
|
1921 |
||
1922 |
.contextual-help-sidebar { |
|
1923 |
width: 150px; |
|
1924 |
float: right; |
|
1925 |
padding: 0 8px 0 12px; |
|
1926 |
overflow: auto; |
|
1927 |
} |
|
1928 |
||
1929 |
/*------------------------------------------------------------------------------ |
|
1930 |
8.0 - Layout Blocks |
|
1931 |
------------------------------------------------------------------------------*/ |
|
1932 |
||
1933 |
html.wp-toolbar { |
|
1934 |
padding-top: 32px; |
|
1935 |
box-sizing: border-box; |
|
1936 |
} |
|
1937 |
||
1938 |
.widefat th, |
|
1939 |
.widefat td { |
|
1940 |
color: #555; |
|
1941 |
} |
|
1942 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1943 |
.widefat th, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1944 |
.widefat thead td, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1945 |
.widefat tfoot td { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1946 |
font-weight: 400; |
5 | 1947 |
} |
1948 |
||
1949 |
.widefat thead tr th, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1950 |
.widefat thead tr td, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1951 |
.widefat tfoot tr th, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1952 |
.widefat tfoot tr td { |
5 | 1953 |
color: #32373c; |
1954 |
} |
|
1955 |
||
1956 |
.widefat td p { |
|
1957 |
margin: 2px 0 0.8em; |
|
1958 |
} |
|
1959 |
||
1960 |
.widefat p, |
|
1961 |
.widefat ol, |
|
1962 |
.widefat ul { |
|
1963 |
color: #32373c; |
|
1964 |
} |
|
1965 |
||
1966 |
.widefat .column-comment p { |
|
1967 |
margin: 0.6em 0; |
|
1968 |
} |
|
1969 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1970 |
.widefat .column-comment ul { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1971 |
list-style: initial; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1972 |
margin-left: 2em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1973 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1974 |
|
5 | 1975 |
/* Screens with postboxes */ |
1976 |
.postbox-container { |
|
1977 |
float: left; |
|
1978 |
} |
|
1979 |
||
1980 |
.postbox-container .meta-box-sortables { |
|
1981 |
box-sizing: border-box; |
|
1982 |
} |
|
1983 |
||
1984 |
#wpbody-content .metabox-holder { |
|
1985 |
padding-top: 10px; |
|
1986 |
} |
|
1987 |
||
16 | 1988 |
.metabox-holder .postbox-container .meta-box-sortables { |
1989 |
/* The jQuery UI Sortables need some initial height to work properly. */ |
|
1990 |
min-height: 1px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1991 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1992 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1993 |
|
5 | 1994 |
#post-body-content { |
1995 |
width: 100%; |
|
1996 |
min-width: 463px; |
|
1997 |
float: left; |
|
1998 |
} |
|
1999 |
||
2000 |
#post-body.columns-2 #postbox-container-1 { |
|
2001 |
float: right; |
|
2002 |
margin-right: -300px; |
|
2003 |
width: 280px; |
|
2004 |
} |
|
2005 |
||
2006 |
#post-body.columns-2 #side-sortables { |
|
2007 |
min-height: 250px; |
|
2008 |
} |
|
2009 |
||
2010 |
/* one column on the dash */ |
|
2011 |
@media only screen and (max-width: 799px) { |
|
2012 |
#wpbody-content .metabox-holder .postbox-container .empty-container { |
|
16 | 2013 |
outline: none; |
5 | 2014 |
height: 0; |
2015 |
min-height: 0; |
|
2016 |
} |
|
2017 |
} |
|
2018 |
||
2019 |
.js .widget .widget-top, |
|
2020 |
.js .postbox .hndle { |
|
2021 |
cursor: move; |
|
2022 |
} |
|
2023 |
||
16 | 2024 |
.js .widget .widget-top.is-non-sortable, |
2025 |
.js .postbox .hndle.is-non-sortable { |
|
2026 |
cursor: auto; |
|
2027 |
} |
|
2028 |
||
2029 |
/* Configurable dashboard widgets "Configure" edit-box link. */ |
|
5 | 2030 |
.hndle a { |
16 | 2031 |
font-size: 12px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2032 |
font-weight: 400; |
5 | 2033 |
} |
2034 |
||
16 | 2035 |
.postbox-header { |
2036 |
display: flex; |
|
2037 |
align-items: center; |
|
2038 |
justify-content: space-between; |
|
2039 |
border-bottom: 1px solid #ccd0d4; |
|
2040 |
} |
|
2041 |
||
2042 |
.postbox-header .hndle { |
|
2043 |
flex-grow: 1; |
|
2044 |
/* Handle the alignment for the configurable dashboard widgets "Configure" edit-box link. */ |
|
2045 |
display: flex; |
|
2046 |
justify-content: space-between; |
|
2047 |
align-items: center; |
|
2048 |
} |
|
2049 |
||
2050 |
.postbox-header .handle-actions { |
|
2051 |
flex-shrink: 0; |
|
2052 |
} |
|
2053 |
||
2054 |
/* Post box order and toggle buttons. */ |
|
2055 |
.postbox .handle-order-higher, |
|
2056 |
.postbox .handle-order-lower, |
|
5 | 2057 |
.postbox .handlediv { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2058 |
width: 36px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2059 |
height: 36px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2060 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2061 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2062 |
border: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2063 |
background: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2064 |
cursor: pointer; |
5 | 2065 |
} |
2066 |
||
16 | 2067 |
.postbox .handle-order-higher, |
2068 |
.postbox .handle-order-lower { |
|
2069 |
color: #72777c; |
|
2070 |
width: 1.62rem; |
|
2071 |
} |
|
2072 |
||
2073 |
/* Post box order buttons in the block editor meta boxes area. */ |
|
2074 |
.edit-post-meta-boxes-area .postbox .handle-order-higher, |
|
2075 |
.edit-post-meta-boxes-area .postbox .handle-order-lower { |
|
2076 |
width: 44px; |
|
2077 |
height: 44px; |
|
2078 |
color: #191e23 |
|
2079 |
} |
|
2080 |
||
2081 |
.postbox .handle-order-higher[aria-disabled="true"], |
|
2082 |
.postbox .handle-order-lower[aria-disabled="true"] { |
|
2083 |
cursor: default; |
|
2084 |
color: #a0a5aa; |
|
5 | 2085 |
} |
2086 |
||
2087 |
.sortable-placeholder { |
|
2088 |
border: 1px dashed #b4b9be; |
|
2089 |
margin-bottom: 20px; |
|
2090 |
} |
|
2091 |
||
2092 |
.postbox, |
|
2093 |
.stuffbox { |
|
2094 |
margin-bottom: 20px; |
|
2095 |
padding: 0; |
|
2096 |
line-height: 1; |
|
2097 |
} |
|
2098 |
||
16 | 2099 |
.postbox.closed { |
2100 |
border-bottom: 0; |
|
2101 |
} |
|
2102 |
||
5 | 2103 |
/* user-select is not a part of the CSS standard - may change behavior in the future */ |
2104 |
.postbox .hndle, |
|
2105 |
.stuffbox .hndle { |
|
2106 |
-webkit-user-select: none; |
|
2107 |
-moz-user-select: none; |
|
2108 |
-ms-user-select: none; |
|
2109 |
user-select: none; |
|
2110 |
} |
|
2111 |
||
9 | 2112 |
.postbox .inside { |
5 | 2113 |
padding: 0 12px 12px; |
9 | 2114 |
line-height: 1.4; |
5 | 2115 |
font-size: 13px; |
2116 |
} |
|
2117 |
||
9 | 2118 |
.stuffbox .inside { |
2119 |
padding: 0; |
|
2120 |
line-height: 1.4; |
|
2121 |
font-size: 13px; |
|
2122 |
margin-top: 0; |
|
2123 |
} |
|
2124 |
||
5 | 2125 |
.postbox .inside { |
2126 |
margin: 11px 0; |
|
2127 |
position: relative; |
|
2128 |
} |
|
2129 |
||
2130 |
.postbox .inside > p:last-child, |
|
2131 |
.rss-widget ul li:last-child { |
|
2132 |
margin-bottom: 1px !important; |
|
2133 |
} |
|
2134 |
||
2135 |
.postbox.closed h3 { |
|
2136 |
border: none; |
|
2137 |
box-shadow: none; |
|
2138 |
} |
|
2139 |
||
2140 |
.postbox table.form-table { |
|
2141 |
margin-bottom: 0; |
|
2142 |
} |
|
2143 |
||
2144 |
.postbox table.widefat { |
|
2145 |
box-shadow: none; |
|
2146 |
} |
|
2147 |
||
2148 |
.temp-border { |
|
2149 |
border: 1px dotted #ccc; |
|
2150 |
} |
|
2151 |
||
2152 |
.columns-prefs label { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2153 |
padding: 0 10px 0 0; |
5 | 2154 |
} |
2155 |
||
2156 |
/* @todo: what is this doing here */ |
|
2157 |
#dashboard_right_now .versions .b, |
|
2158 |
#post-status-display, |
|
2159 |
#post-visibility-display, |
|
2160 |
#adminmenu .wp-submenu li.current, |
|
2161 |
#adminmenu .wp-submenu li.current a, |
|
2162 |
#adminmenu .wp-submenu li.current a:hover, |
|
2163 |
.media-item .percent, |
|
2164 |
.plugins .name, |
|
2165 |
#pass-strength-result.strong, |
|
2166 |
#pass-strength-result.short, |
|
2167 |
#ed_reply_toolbar #ed_reply_strong, |
|
2168 |
.item-controls .item-order a, |
|
16 | 2169 |
.feature-filter .feature-name, |
2170 |
#comment-status-display { |
|
5 | 2171 |
font-weight: 600; |
2172 |
} |
|
2173 |
||
2174 |
/*------------------------------------------------------------------------------ |
|
2175 |
21.0 - Admin Footer |
|
2176 |
------------------------------------------------------------------------------*/ |
|
2177 |
||
2178 |
#wpfooter { |
|
2179 |
position: absolute; |
|
2180 |
bottom: 0; |
|
2181 |
left: 0; |
|
2182 |
right: 0; |
|
2183 |
padding: 10px 20px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2184 |
color: #555d66; |
5 | 2185 |
} |
2186 |
||
2187 |
#wpfooter p { |
|
2188 |
font-size: 13px; |
|
2189 |
margin: 0; |
|
9 | 2190 |
line-height: 1.55; |
5 | 2191 |
} |
2192 |
||
2193 |
#footer-thankyou { |
|
2194 |
font-style: italic; |
|
2195 |
} |
|
2196 |
||
2197 |
/*------------------------------------------------------------------------------ |
|
2198 |
25.0 - Tabbed Admin Screen Interface (Experimental) |
|
2199 |
------------------------------------------------------------------------------*/ |
|
2200 |
||
2201 |
.nav-tab { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2202 |
float: left; |
5 | 2203 |
border: 1px solid #ccc; |
2204 |
border-bottom: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2205 |
margin-left: 0.5em; /* half the font size so set the font size properly */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2206 |
padding: 5px 10px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2207 |
font-size: 14px; |
9 | 2208 |
line-height: 1.71428571; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2209 |
font-weight: 600; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2210 |
background: #e5e5e5; |
5 | 2211 |
color: #555; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2212 |
text-decoration: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2213 |
white-space: nowrap; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2214 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2215 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2216 |
h3 .nav-tab, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2217 |
.nav-tab-small .nav-tab { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2218 |
padding: 5px 14px; |
5 | 2219 |
font-size: 12px; |
9 | 2220 |
line-height: 1.33; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2221 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2222 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2223 |
.nav-tab:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2224 |
.nav-tab:focus { |
5 | 2225 |
background-color: #fff; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2226 |
color: #444; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2227 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2228 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2229 |
.nav-tab-active, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2230 |
.nav-tab:focus:active { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2231 |
box-shadow: none; |
5 | 2232 |
} |
2233 |
||
2234 |
.nav-tab-active { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2235 |
margin-bottom: -1px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2236 |
color: #444; |
5 | 2237 |
} |
2238 |
||
2239 |
.nav-tab-active, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2240 |
.nav-tab-active:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2241 |
.nav-tab-active:focus, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2242 |
.nav-tab-active:focus:active { |
5 | 2243 |
border-bottom: 1px solid #f1f1f1; |
2244 |
background: #f1f1f1; |
|
2245 |
color: #000; |
|
2246 |
} |
|
2247 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2248 |
h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2249 |
.wrap h2.nav-tab-wrapper, /* higher specificity to override .wrap > h2:first-child */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2250 |
.nav-tab-wrapper { |
5 | 2251 |
border-bottom: 1px solid #ccc; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2252 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2253 |
padding-top: 9px; |
5 | 2254 |
padding-bottom: 0; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2255 |
line-height: inherit; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2256 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2257 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2258 |
/* Back-compat for plugins. Deprecated. Use .wp-clearfix instead. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2259 |
.nav-tab-wrapper:not(.wp-clearfix):after { |
9 | 2260 |
content: ""; |
2261 |
display: table; |
|
2262 |
clear: both; |
|
2263 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2264 |
|
5 | 2265 |
/*------------------------------------------------------------------------------ |
2266 |
26.0 - Misc |
|
2267 |
------------------------------------------------------------------------------*/ |
|
2268 |
||
2269 |
.spinner { |
|
2270 |
background: url(../images/spinner.gif) no-repeat; |
|
2271 |
background-size: 20px 20px; |
|
2272 |
display: inline-block; |
|
2273 |
visibility: hidden; |
|
2274 |
float: right; |
|
2275 |
vertical-align: middle; |
|
2276 |
opacity: 0.7; |
|
2277 |
filter: alpha(opacity=70); |
|
2278 |
width: 20px; |
|
2279 |
height: 20px; |
|
2280 |
margin: 4px 10px 0; |
|
2281 |
} |
|
2282 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2283 |
.spinner.is-active, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2284 |
.loading-content .spinner { |
5 | 2285 |
visibility: visible; |
2286 |
} |
|
2287 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2288 |
#template > div { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2289 |
margin-right: 16em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2290 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2291 |
#template .notice { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2292 |
margin-top: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2293 |
margin-right: 3%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2294 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2295 |
#template .notice p { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2296 |
width: auto; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2297 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2298 |
#template .submit .spinner { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2299 |
float: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2300 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2301 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2302 |
.metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2303 |
.metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2304 |
.metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2305 |
.metabox-holder h2.hndle { |
5 | 2306 |
font-size: 14px; |
2307 |
padding: 8px 12px; |
|
2308 |
margin: 0; |
|
2309 |
line-height: 1.4; |
|
2310 |
} |
|
2311 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2312 |
/* Back-compat for nav-menus screen */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2313 |
.nav-menus-php .metabox-holder h3 { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2314 |
padding: 10px 10px 11px 14px; |
9 | 2315 |
line-height: 1.5; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2316 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2317 |
|
5 | 2318 |
#templateside ul li a { |
2319 |
text-decoration: none; |
|
2320 |
} |
|
2321 |
||
2322 |
.plugin-install #description, |
|
2323 |
.plugin-install-network #description { |
|
2324 |
width: 60%; |
|
2325 |
} |
|
2326 |
||
2327 |
table .vers, |
|
2328 |
table .column-visible, |
|
2329 |
table .column-rating { |
|
2330 |
text-align: left; |
|
2331 |
} |
|
2332 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2333 |
.attention, |
5 | 2334 |
.error-message { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2335 |
color: #dc3232; |
5 | 2336 |
font-weight: 600; |
2337 |
} |
|
2338 |
||
2339 |
/* Scrollbar fix for bulk upgrade iframe */ |
|
2340 |
body.iframe { |
|
2341 |
height: 98%; |
|
2342 |
} |
|
2343 |
||
2344 |
/* Upgrader styles, Specific to Language Packs */ |
|
2345 |
.lp-show-latest p { |
|
2346 |
display: none; |
|
2347 |
} |
|
2348 |
.lp-show-latest p:last-child, |
|
2349 |
.lp-show-latest .lp-error p { |
|
2350 |
display: block; |
|
2351 |
} |
|
2352 |
||
2353 |
/* - Only used once or twice in all of WP - deprecate for global style |
|
2354 |
------------------------------------------------------------------------------*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2355 |
.media-icon { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2356 |
width: 62px; /* icon + border */ |
5 | 2357 |
text-align: center; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2358 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2359 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2360 |
.media-icon img { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2361 |
border: 1px solid #e5e5e5; |
5 | 2362 |
border: 1px solid rgba(0, 0, 0, 0.07); |
2363 |
} |
|
2364 |
||
2365 |
#howto { |
|
2366 |
font-size: 11px; |
|
2367 |
margin: 0 5px; |
|
2368 |
display: block; |
|
2369 |
} |
|
2370 |
||
2371 |
.importers { |
|
2372 |
font-size: 16px; |
|
2373 |
width: auto; |
|
2374 |
} |
|
2375 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2376 |
.importers td { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2377 |
padding-right: 14px; |
9 | 2378 |
line-height: 1.4; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2379 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2380 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2381 |
.importers .import-system { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2382 |
max-width: 250px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2383 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2384 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2385 |
.importers td.desc { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2386 |
max-width: 500px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2387 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2388 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2389 |
.importer-title, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2390 |
.importer-desc, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2391 |
.importer-action { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2392 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2393 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2394 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2395 |
.importer-title { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2396 |
color: #000; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2397 |
font-size: 14px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2398 |
font-weight: 400; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2399 |
margin-bottom: .2em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2400 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2401 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2402 |
.importer-action { |
9 | 2403 |
line-height: 1.55; /* Same as with .updating-message */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2404 |
color: #555; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2405 |
margin-bottom: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2406 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2407 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2408 |
#post-body #post-body-content #namediv h3, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2409 |
#post-body #post-body-content #namediv h2 { |
5 | 2410 |
margin-top: 0; |
2411 |
} |
|
2412 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2413 |
.edit-comment-author { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2414 |
color: #222; |
9 | 2415 |
border-bottom: 1px solid #eee; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2416 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2417 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2418 |
#namediv h3 label, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2419 |
#namediv h2 label { |
5 | 2420 |
vertical-align: baseline; |
2421 |
} |
|
2422 |
||
2423 |
#namediv table { |
|
2424 |
width: 100%; |
|
2425 |
} |
|
2426 |
||
2427 |
#namediv td.first { |
|
2428 |
width: 10px; |
|
2429 |
white-space: nowrap; |
|
2430 |
} |
|
2431 |
||
2432 |
#namediv input { |
|
2433 |
width: 98%; |
|
2434 |
} |
|
2435 |
||
2436 |
#namediv p { |
|
2437 |
margin: 10px 0; |
|
2438 |
} |
|
2439 |
||
2440 |
/* - Used - but could/should be deprecated with a CSS reset |
|
2441 |
------------------------------------------------------------------------------*/ |
|
2442 |
.zerosize { |
|
2443 |
height: 0; |
|
2444 |
width: 0; |
|
2445 |
margin: 0; |
|
2446 |
border: 0; |
|
2447 |
padding: 0; |
|
2448 |
overflow: hidden; |
|
2449 |
position: absolute; |
|
2450 |
} |
|
2451 |
||
2452 |
br.clear { |
|
2453 |
height: 2px; |
|
9 | 2454 |
line-height: 0.15; |
5 | 2455 |
} |
2456 |
||
2457 |
.checkbox { |
|
2458 |
border: none; |
|
2459 |
margin: 0; |
|
2460 |
padding: 0; |
|
2461 |
} |
|
2462 |
||
2463 |
fieldset { |
|
2464 |
border: 0; |
|
2465 |
padding: 0; |
|
2466 |
margin: 0; |
|
2467 |
} |
|
2468 |
||
2469 |
.post-categories { |
|
2470 |
display: inline; |
|
2471 |
margin: 0; |
|
2472 |
padding: 0; |
|
2473 |
} |
|
2474 |
||
2475 |
.post-categories li { |
|
2476 |
display: inline; |
|
2477 |
} |
|
2478 |
||
2479 |
/* Star Ratings - Back-compat for pre-3.8 */ |
|
2480 |
div.star-holder { |
|
2481 |
position: relative; |
|
2482 |
height: 17px; |
|
2483 |
width: 100px; |
|
2484 |
background: url(../images/stars.png?ver=20121108) repeat-x bottom left; |
|
2485 |
} |
|
2486 |
||
2487 |
div.star-holder .star-rating { |
|
2488 |
background: url(../images/stars.png?ver=20121108) repeat-x top left; |
|
2489 |
height: 17px; |
|
2490 |
float: left; |
|
2491 |
} |
|
2492 |
||
2493 |
/* Star Ratings */ |
|
2494 |
.star-rating { |
|
2495 |
white-space: nowrap; |
|
2496 |
} |
|
2497 |
.star-rating .star { |
|
2498 |
display: inline-block; |
|
2499 |
width: 20px; |
|
2500 |
height: 20px; |
|
2501 |
-webkit-font-smoothing: antialiased; |
|
2502 |
font-size: 20px; |
|
2503 |
line-height: 1; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2504 |
font-family: dashicons; |
5 | 2505 |
text-decoration: inherit; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2506 |
font-weight: 400; |
5 | 2507 |
font-style: normal; |
2508 |
vertical-align: top; |
|
9 | 2509 |
transition: color .1s ease-in; |
5 | 2510 |
text-align: center; |
2511 |
color: #ffb900; |
|
2512 |
} |
|
2513 |
||
2514 |
.star-rating .star-full:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2515 |
content: "\f155"; |
5 | 2516 |
} |
2517 |
||
2518 |
.star-rating .star-half:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2519 |
content: "\f459"; |
5 | 2520 |
} |
2521 |
||
2522 |
.rtl .star-rating .star-half { |
|
2523 |
transform: rotateY(180deg); |
|
2524 |
} |
|
2525 |
||
2526 |
.star-rating .star-empty:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2527 |
content: "\f154"; |
5 | 2528 |
} |
2529 |
||
2530 |
div.action-links { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2531 |
font-weight: 400; |
5 | 2532 |
margin: 6px 0 0; |
2533 |
} |
|
2534 |
||
2535 |
/* Plugin install thickbox */ |
|
2536 |
#plugin-information { |
|
2537 |
background: #fff; |
|
2538 |
position: fixed; |
|
2539 |
top: 0; |
|
2540 |
right: 0; |
|
2541 |
bottom: 0; |
|
2542 |
left: 0; |
|
2543 |
height: 100%; |
|
2544 |
padding: 0; |
|
2545 |
} |
|
2546 |
||
2547 |
#plugin-information-scrollable { |
|
2548 |
overflow: auto; |
|
2549 |
-webkit-overflow-scrolling: touch; |
|
2550 |
height: 100%; |
|
2551 |
} |
|
2552 |
||
2553 |
#plugin-information-title { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2554 |
padding: 0 26px; |
5 | 2555 |
background: #f5f5f5; |
2556 |
font-size: 22px; |
|
2557 |
font-weight: 600; |
|
9 | 2558 |
line-height: 2.4; |
5 | 2559 |
position: relative; |
2560 |
height: 56px; |
|
2561 |
} |
|
2562 |
||
2563 |
#plugin-information-title.with-banner { |
|
2564 |
margin-right: 0; |
|
2565 |
height: 250px; |
|
2566 |
background-size: cover; |
|
2567 |
} |
|
2568 |
||
2569 |
#plugin-information-title h2 { |
|
2570 |
font-size: 1em; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2571 |
font-weight: 600; |
5 | 2572 |
padding: 0; |
2573 |
margin: 0; |
|
2574 |
overflow: hidden; |
|
2575 |
text-overflow: ellipsis; |
|
2576 |
white-space: nowrap; |
|
2577 |
} |
|
2578 |
||
2579 |
#plugin-information-title.with-banner h2 { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2580 |
position: relative; |
5 | 2581 |
font-family: "Helvetica Neue", sans-serif; |
2582 |
display: inline-block; |
|
2583 |
font-size: 30px; |
|
9 | 2584 |
line-height: 1.68; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2585 |
box-sizing: border-box; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2586 |
max-width: 100%; |
5 | 2587 |
padding: 0 15px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2588 |
margin-top: 174px; |
5 | 2589 |
color: #fff; |
9 | 2590 |
background: rgba(30, 30, 30, 0.9); |
2591 |
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); |
|
2592 |
box-shadow: 0 0 30px rgba(255, 255, 255, 0.1); |
|
5 | 2593 |
border-radius: 8px; |
2594 |
} |
|
2595 |
||
2596 |
#plugin-information-title div.vignette { |
|
2597 |
display: none; |
|
2598 |
} |
|
2599 |
||
2600 |
#plugin-information-title.with-banner div.vignette { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2601 |
position: absolute; |
5 | 2602 |
display: block; |
2603 |
top: 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2604 |
left: 0; |
5 | 2605 |
height: 250px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2606 |
width: 100%; |
5 | 2607 |
background: transparent; |
9 | 2608 |
box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
5 | 2609 |
} |
2610 |
||
2611 |
#plugin-information-tabs { |
|
2612 |
padding: 0 16px; |
|
2613 |
position: relative; |
|
2614 |
right: 0; |
|
2615 |
left: 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2616 |
min-height: 36px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2617 |
font-size: 0; |
5 | 2618 |
z-index: 1; |
2619 |
border-bottom: 1px solid #ddd; |
|
2620 |
background: #f3f3f3; |
|
2621 |
} |
|
2622 |
||
2623 |
#plugin-information-tabs a { |
|
2624 |
position: relative; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2625 |
display: inline-block; |
5 | 2626 |
padding: 9px 10px; |
2627 |
margin: 0; |
|
2628 |
height: 18px; |
|
9 | 2629 |
line-height: 1.3; |
5 | 2630 |
font-size: 14px; |
2631 |
text-decoration: none; |
|
2632 |
transition: none; |
|
2633 |
} |
|
2634 |
||
2635 |
#plugin-information-tabs a.current { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2636 |
margin: 0 -1px -1px; |
5 | 2637 |
background: #fff; |
2638 |
border: 1px solid #ddd; |
|
2639 |
border-bottom-color: #fff; |
|
2640 |
padding-top: 8px; |
|
2641 |
color: #32373c; |
|
2642 |
} |
|
2643 |
||
2644 |
#plugin-information-tabs.with-banner a.current { |
|
2645 |
border-top: none; |
|
2646 |
padding-top: 9px; |
|
2647 |
} |
|
2648 |
||
2649 |
#plugin-information-tabs a:active, |
|
2650 |
#plugin-information-tabs a:focus { |
|
2651 |
outline: none; |
|
2652 |
} |
|
2653 |
||
2654 |
#plugin-information-content { |
|
2655 |
overflow: hidden; /* equal height column trick */ |
|
2656 |
background: #fff; |
|
2657 |
position: relative; |
|
2658 |
top: 0; |
|
2659 |
right: 0; |
|
2660 |
left: 0; |
|
2661 |
min-height: 100%; |
|
2662 |
/* Height of title + tabs + install now */ |
|
2663 |
min-height: calc( 100% - 152px ); |
|
2664 |
} |
|
2665 |
||
2666 |
#plugin-information-content.with-banner { |
|
2667 |
/* Height of banner + tabs + install now */ |
|
2668 |
min-height: calc( 100% - 346px ); |
|
2669 |
} |
|
2670 |
||
2671 |
#section-holder { |
|
2672 |
position: relative; |
|
2673 |
top: 0; |
|
2674 |
right: 250px; |
|
2675 |
bottom: 0; |
|
2676 |
left: 0; |
|
9 | 2677 |
margin-top: 10px; |
5 | 2678 |
margin-right: 250px; /* FYI box */ |
2679 |
padding: 10px 26px; |
|
16 | 2680 |
margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */ |
5 | 2681 |
padding-bottom: 99999px; /* equal height column trick */ |
2682 |
} |
|
2683 |
||
9 | 2684 |
#section-holder .notice { |
2685 |
margin: 5px 0 15px; |
|
2686 |
} |
|
2687 |
||
5 | 2688 |
#section-holder .updated { |
2689 |
margin: 16px 0; |
|
2690 |
} |
|
2691 |
||
2692 |
#plugin-information .fyi { |
|
2693 |
float: right; |
|
2694 |
position: relative; |
|
2695 |
top: 0; |
|
2696 |
right: 0; |
|
2697 |
padding: 16px; |
|
16 | 2698 |
margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */ |
5 | 2699 |
padding-bottom: 99999px; /* equal height column trick */ |
2700 |
width: 217px; |
|
2701 |
border-left: 1px solid #ddd; |
|
2702 |
background: #f3f3f3; |
|
2703 |
color: #666; |
|
2704 |
} |
|
2705 |
||
2706 |
#plugin-information .fyi strong { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2707 |
color: #444; |
5 | 2708 |
} |
2709 |
||
2710 |
#plugin-information .fyi h3 { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2711 |
font-weight: 600; |
5 | 2712 |
text-transform: uppercase; |
2713 |
font-size: 12px; |
|
2714 |
color: #666; |
|
2715 |
margin: 24px 0 8px; |
|
2716 |
} |
|
2717 |
||
2718 |
#plugin-information .fyi h2 { |
|
2719 |
font-size: 0.9em; |
|
2720 |
margin-bottom: 0; |
|
2721 |
margin-right: 0; |
|
2722 |
} |
|
2723 |
||
2724 |
#plugin-information .fyi ul { |
|
2725 |
padding: 0; |
|
2726 |
margin: 0; |
|
2727 |
list-style: none; |
|
2728 |
} |
|
2729 |
||
2730 |
#plugin-information .fyi li { |
|
2731 |
margin: 0 0 10px; |
|
2732 |
} |
|
2733 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2734 |
#plugin-information .fyi-description { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2735 |
margin-top: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2736 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2737 |
|
5 | 2738 |
#plugin-information .counter-container { |
2739 |
margin: 3px 0; |
|
2740 |
} |
|
2741 |
||
2742 |
#plugin-information .counter-label { |
|
2743 |
float: left; |
|
2744 |
margin-right: 5px; |
|
2745 |
min-width: 55px; |
|
2746 |
} |
|
2747 |
||
2748 |
#plugin-information .counter-back { |
|
2749 |
height: 17px; |
|
2750 |
width: 92px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2751 |
background-color: #e5e5e5; |
5 | 2752 |
float: left; |
2753 |
} |
|
2754 |
||
2755 |
#plugin-information .counter-bar { |
|
2756 |
height: 17px; |
|
2757 |
background-color: #ffc733; /* slightly lighter than stars due to larger expanse */ |
|
2758 |
float: left; |
|
2759 |
} |
|
2760 |
||
2761 |
#plugin-information .counter-count { |
|
2762 |
margin-left: 5px; |
|
2763 |
} |
|
2764 |
||
2765 |
#plugin-information .fyi ul.contributors { |
|
2766 |
margin-top: 10px; |
|
2767 |
} |
|
2768 |
||
2769 |
#plugin-information .fyi ul.contributors li { |
|
2770 |
display: inline-block; |
|
2771 |
margin-right: 8px; |
|
2772 |
vertical-align: middle; |
|
2773 |
} |
|
2774 |
||
2775 |
#plugin-information .fyi ul.contributors li { |
|
2776 |
display: inline-block; |
|
2777 |
margin-right: 8px; |
|
2778 |
vertical-align: middle; |
|
2779 |
} |
|
2780 |
||
2781 |
#plugin-information .fyi ul.contributors li img { |
|
2782 |
vertical-align: middle; |
|
2783 |
margin-right: 4px; |
|
2784 |
} |
|
2785 |
||
2786 |
#plugin-information-footer { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2787 |
padding: 13px 16px; |
5 | 2788 |
position: absolute; |
2789 |
right: 0; |
|
2790 |
bottom: 0; |
|
2791 |
left: 0; |
|
16 | 2792 |
height: 40px; /* actual height: 40+13+13+1=67 */ |
5 | 2793 |
border-top: 1px solid #ddd; |
2794 |
background: #f3f3f3; |
|
2795 |
} |
|
2796 |
||
2797 |
/* rtl:ignore */ |
|
2798 |
#plugin-information .section { |
|
2799 |
direction: ltr; |
|
2800 |
} |
|
2801 |
||
2802 |
/* rtl:ignore */ |
|
2803 |
#plugin-information .section ul, |
|
2804 |
#plugin-information .section ol { |
|
2805 |
list-style-type: disc; |
|
2806 |
margin-left: 24px; |
|
2807 |
} |
|
2808 |
||
2809 |
#plugin-information .section, |
|
2810 |
#plugin-information .section p { |
|
2811 |
font-size: 14px; |
|
2812 |
line-height: 1.7; |
|
2813 |
} |
|
2814 |
||
2815 |
#plugin-information #section-screenshots ol { |
|
2816 |
list-style: none; |
|
2817 |
margin: 0; |
|
2818 |
} |
|
2819 |
||
2820 |
#plugin-information #section-screenshots li img { |
|
2821 |
vertical-align: text-top; |
|
2822 |
margin-top: 16px; |
|
2823 |
max-width: 100%; |
|
2824 |
width: auto; |
|
2825 |
height: auto; |
|
9 | 2826 |
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); |
5 | 2827 |
} |
2828 |
||
2829 |
/* rtl:ignore */ |
|
2830 |
#plugin-information #section-screenshots li p { |
|
2831 |
font-style: italic; |
|
2832 |
padding-left: 20px; |
|
2833 |
} |
|
2834 |
||
2835 |
#plugin-information pre { |
|
2836 |
padding: 7px; |
|
2837 |
overflow: auto; |
|
2838 |
border: 1px solid #ccc; |
|
2839 |
} |
|
2840 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2841 |
#plugin-information blockquote { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2842 |
border-left: 2px solid #ddd; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2843 |
color: #666; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2844 |
font-style: italic; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2845 |
margin: 1em 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2846 |
padding: 0 0 0 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2847 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2848 |
|
5 | 2849 |
/* rtl:ignore */ |
2850 |
#plugin-information .review { |
|
2851 |
overflow: hidden; /* clearfix */ |
|
2852 |
width: 100%; |
|
2853 |
margin-bottom: 20px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2854 |
border-bottom: 1px solid #e5e5e5; |
5 | 2855 |
} |
2856 |
||
2857 |
#plugin-information .review-title-section { |
|
2858 |
overflow: hidden; /* clearfix */ |
|
2859 |
} |
|
2860 |
||
2861 |
/* rtl:ignore */ |
|
2862 |
#plugin-information .review-title-section h4 { |
|
2863 |
display: inline-block; |
|
2864 |
float: left; |
|
2865 |
margin: 0 6px 0 0; |
|
2866 |
} |
|
2867 |
||
2868 |
#plugin-information .reviewer-info p { |
|
2869 |
clear: both; |
|
2870 |
margin: 0; |
|
2871 |
padding-top: 2px; |
|
2872 |
} |
|
2873 |
||
2874 |
/* rtl:ignore */ |
|
2875 |
#plugin-information .reviewer-info .avatar { |
|
2876 |
float: left; |
|
2877 |
margin: 4px 6px 0 0; |
|
2878 |
} |
|
2879 |
||
2880 |
/* rtl:ignore */ |
|
2881 |
#plugin-information .reviewer-info .star-rating { |
|
2882 |
float: left; |
|
2883 |
} |
|
2884 |
||
2885 |
/* rtl:ignore */ |
|
2886 |
#plugin-information .review-meta { |
|
2887 |
float: left; |
|
2888 |
margin-left: 0.75em; |
|
2889 |
} |
|
2890 |
||
2891 |
/* rtl:ignore */ |
|
2892 |
#plugin-information .review-body { |
|
2893 |
float: left; |
|
2894 |
width: 100%; |
|
2895 |
} |
|
2896 |
||
2897 |
.plugin-version-author-uri { |
|
2898 |
font-size: 13px; |
|
2899 |
} |
|
2900 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2901 |
/* For non-js plugin installation screen ticket #36430. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2902 |
.update-php .button.button-primary { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2903 |
margin-right: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2904 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2905 |
|
9 | 2906 |
@media screen and (max-width: 771px) { |
5 | 2907 |
#plugin-information-title.with-banner { |
2908 |
height: 100px; |
|
2909 |
} |
|
2910 |
||
2911 |
#plugin-information-title.with-banner h2 { |
|
2912 |
margin-top: 30px; |
|
2913 |
font-size: 20px; |
|
9 | 2914 |
line-height: 2; |
5 | 2915 |
max-width: 85%; |
2916 |
} |
|
2917 |
||
2918 |
#plugin-information-title.with-banner div.vignette { |
|
2919 |
height: 100px; |
|
2920 |
} |
|
2921 |
||
2922 |
#plugin-information-tabs { |
|
2923 |
overflow: hidden; /* clearfix */ |
|
2924 |
padding: 0; |
|
2925 |
height: auto; /* let tabs wrap */ |
|
2926 |
} |
|
2927 |
||
2928 |
#plugin-information-tabs a.current { |
|
2929 |
margin-bottom: 0; |
|
2930 |
border-bottom: none; |
|
2931 |
} |
|
2932 |
||
2933 |
#plugin-information .fyi { |
|
2934 |
float: none; |
|
2935 |
border: 1px solid #ddd; |
|
2936 |
position: static; |
|
2937 |
width: auto; |
|
2938 |
margin: 26px 26px 0; |
|
2939 |
padding-bottom: 0; /* reset from the two column height fix */ |
|
2940 |
} |
|
2941 |
||
2942 |
#section-holder { |
|
2943 |
position: static; |
|
2944 |
margin: 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2945 |
padding-bottom: 70px; /* reset from the two column height fix, plus accommodate footer */ |
5 | 2946 |
} |
2947 |
||
2948 |
#plugin-information .fyi h3, |
|
2949 |
#plugin-information .fyi small { |
|
2950 |
display: none; |
|
2951 |
} |
|
2952 |
||
2953 |
#plugin-information-footer { |
|
2954 |
padding: 12px 16px 0; |
|
2955 |
height: 46px; |
|
2956 |
} |
|
2957 |
} |
|
2958 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2959 |
/* Thickbox for the Plugin details modal. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2960 |
#TB_window.plugin-details-modal { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2961 |
background: #fcfcfc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2962 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2963 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2964 |
#TB_window.plugin-details-modal.thickbox-loading:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2965 |
content: ""; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2966 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2967 |
width: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2968 |
height: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2969 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2970 |
left: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2971 |
top: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2972 |
z-index: -1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2973 |
margin: -10px 0 0 -10px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2974 |
background: #fcfcfc url(../images/spinner.gif) no-repeat center; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2975 |
background-size: 20px 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2976 |
transform: translateZ(0); |
5 | 2977 |
} |
2978 |
||
2979 |
@media print, |
|
2980 |
(-webkit-min-device-pixel-ratio: 1.25), |
|
2981 |
(min-resolution: 120dpi) { |
|
2982 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2983 |
#TB_window.plugin-details-modal.thickbox-loading:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2984 |
background-image: url(../images/spinner-2x.gif); |
5 | 2985 |
} |
2986 |
} |
|
2987 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2988 |
.plugin-details-modal #TB_title { |
5 | 2989 |
float: left; |
2990 |
height: 1px; |
|
2991 |
} |
|
2992 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2993 |
.plugin-details-modal #TB_ajaxWindowTitle { |
5 | 2994 |
display: none; |
2995 |
} |
|
2996 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2997 |
.plugin-details-modal #TB_closeWindowButton { |
5 | 2998 |
left: auto; |
2999 |
right: -30px; |
|
3000 |
color: #eee; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3001 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3002 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3003 |
.plugin-details-modal #TB_closeWindowButton:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3004 |
.plugin-details-modal #TB_closeWindowButton:focus { |
16 | 3005 |
color: #006799; |
5 | 3006 |
outline: none; |
3007 |
box-shadow: none; |
|
3008 |
} |
|
3009 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3010 |
.plugin-details-modal .tb-close-icon { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3011 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3012 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3013 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3014 |
.plugin-details-modal #TB_closeWindowButton:after { |
5 | 3015 |
content: "\f335"; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3016 |
font: normal 32px/29px 'dashicons'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3017 |
speak: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3018 |
-webkit-font-smoothing: antialiased; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3019 |
-moz-osx-font-smoothing: grayscale; |
5 | 3020 |
} |
3021 |
||
3022 |
/* move plugin install close icon to top on narrow screens */ |
|
9 | 3023 |
@media screen and (max-width: 830px) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3024 |
.plugin-details-modal #TB_closeWindowButton { |
5 | 3025 |
right: 0; |
3026 |
top: -30px; |
|
3027 |
} |
|
3028 |
} |
|
3029 |
||
3030 |
/* @todo: move this. */ |
|
3031 |
img { |
|
3032 |
border: none; |
|
3033 |
} |
|
3034 |
||
3035 |
/* Metabox collapse arrow indicators */ |
|
16 | 3036 |
.sidebar-name .toggle-indicator::before, |
3037 |
.meta-box-sortables .postbox .toggle-indicator::before, |
|
3038 |
.meta-box-sortables .postbox .order-higher-indicator::before, |
|
3039 |
.meta-box-sortables .postbox .order-lower-indicator::before, |
|
3040 |
.bulk-action-notice .toggle-indicator::before, |
|
3041 |
.privacy-text-box .toggle-indicator::before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3042 |
content: "\f142"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3043 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3044 |
font: normal 20px/1 dashicons; |
5 | 3045 |
speak: none; |
3046 |
-webkit-font-smoothing: antialiased; |
|
3047 |
-moz-osx-font-smoothing: grayscale; |
|
16 | 3048 |
text-decoration: none; |
3049 |
} |
|
3050 |
||
3051 |
.js .widgets-holder-wrap.closed .toggle-indicator::before, |
|
3052 |
.meta-box-sortables .postbox.closed .handlediv .toggle-indicator::before, |
|
3053 |
.bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator::before, |
|
3054 |
.privacy-text-box.closed .toggle-indicator::before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3055 |
content: "\f140"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3056 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3057 |
|
16 | 3058 |
.postbox .handle-order-higher .order-higher-indicator::before { |
3059 |
content: "\f343"; |
|
3060 |
color: inherit; |
|
3061 |
} |
|
3062 |
||
3063 |
.postbox .handle-order-lower .order-lower-indicator::before { |
|
3064 |
content: "\f347"; |
|
3065 |
color: inherit; |
|
3066 |
} |
|
3067 |
||
3068 |
.postbox .handle-order-higher .order-higher-indicator::before, |
|
3069 |
.postbox .handle-order-lower .order-lower-indicator::before { |
|
3070 |
position: relative; |
|
3071 |
top: 0.11rem; |
|
3072 |
width: 20px; |
|
3073 |
height: 20px; |
|
3074 |
} |
|
3075 |
||
3076 |
.postbox .handlediv .toggle-indicator::before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3077 |
width: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3078 |
border-radius: 50%; |
16 | 3079 |
} |
3080 |
||
3081 |
.postbox .handlediv .toggle-indicator::before { |
|
3082 |
position: relative; |
|
3083 |
top: 0.05rem; |
|
3084 |
text-indent: -1px; /* account for the dashicon glyph uneven horizontal alignment */ |
|
3085 |
} |
|
3086 |
||
3087 |
.rtl .postbox .handlediv .toggle-indicator::before { |
|
3088 |
text-indent: 1px; /* account for the dashicon glyph uneven horizontal alignment */ |
|
3089 |
} |
|
3090 |
||
3091 |
.bulk-action-notice .toggle-indicator::before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3092 |
line-height: 16px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3093 |
vertical-align: top; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3094 |
color: #72777c; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3095 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3096 |
|
16 | 3097 |
.postbox .handle-order-higher:focus, |
3098 |
.postbox .handle-order-lower:focus, |
|
3099 |
.postbox .handlediv:focus { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3100 |
box-shadow: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3101 |
0 0 0 1px #5b9dd9, |
9 | 3102 |
0 0 2px 1px rgba(30, 140, 190, 0.8); |
16 | 3103 |
/* Only visible in Windows High Contrast mode */ |
3104 |
outline: 1px solid transparent; |
|
3105 |
} |
|
3106 |
||
3107 |
.postbox .handle-order-higher:focus .order-higher-indicator::before, |
|
3108 |
.postbox .handle-order-lower:focus .order-lower-indicator::before, |
|
3109 |
.postbox .handlediv:focus .toggle-indicator::before { |
|
3110 |
box-shadow: none; |
|
3111 |
/* Only visible in Windows High Contrast mode */ |
|
3112 |
outline: 1px solid transparent; |
|
5 | 3113 |
} |
3114 |
||
3115 |
/* @todo: appears to be Press This only and overridden */ |
|
3116 |
#photo-add-url-div input[type="text"] { |
|
3117 |
width: 300px; |
|
3118 |
} |
|
3119 |
||
3120 |
/* Theme/Plugin Editor */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3121 |
.alignleft h2 { |
5 | 3122 |
margin: 0; |
3123 |
} |
|
3124 |
||
3125 |
#template textarea { |
|
3126 |
font-family: Consolas, Monaco, monospace; |
|
3127 |
font-size: 13px; |
|
3128 |
background: #f9f9f9; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3129 |
-moz-tab-size: 4; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3130 |
-o-tab-size: 4; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3131 |
tab-size: 4; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3132 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3133 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3134 |
#template textarea, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3135 |
#template .CodeMirror { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3136 |
width: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3137 |
min-height: 60vh; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3138 |
height: calc( 100vh - 295px ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3139 |
border: 1px solid #ddd; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3140 |
box-sizing: border-box; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3141 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3142 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3143 |
#templateside > h2 { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3144 |
padding-top: 6px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3145 |
padding-bottom: 7px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3146 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3147 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3148 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3149 |
#templateside ol, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3150 |
#templateside ul { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3151 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3152 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3153 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3154 |
#templateside > ul { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3155 |
box-sizing: border-box; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3156 |
margin-top: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3157 |
overflow: auto; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3158 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3159 |
min-height: 60vh; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3160 |
height: calc(100vh - 295px); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3161 |
background-color: #f7f7f7; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3162 |
border: 1px solid #ddd; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3163 |
border-left: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3164 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3165 |
#templateside ul ul { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3166 |
padding-left: 12px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3167 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3168 |
#templateside > ul > li > ul[role=group] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3169 |
padding-left: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3170 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3171 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3172 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3173 |
* Styles for Theme and Plugin editors. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3174 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3175 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3176 |
/* Hide collapsed items. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3177 |
[role="treeitem"][aria-expanded="false"] > ul { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3178 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3179 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3180 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3181 |
/* Use arrow dashicons for folder states, but hide from screen readers. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3182 |
[role="treeitem"] span[aria-hidden] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3183 |
display: inline; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3184 |
font-family: dashicons; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3185 |
font-size: 20px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3186 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3187 |
pointer-events: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3188 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3189 |
[role="treeitem"][aria-expanded="false"] > .folder-label .icon:after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3190 |
content: "\f139"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3191 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3192 |
[role="treeitem"][aria-expanded="true"] > .folder-label .icon:after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3193 |
content: "\f140"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3194 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3195 |
[role="treeitem"] .folder-label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3196 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3197 |
padding: 3px 3px 3px 12px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3198 |
cursor: pointer; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3199 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3200 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3201 |
/* Remove outline, and create our own focus and hover styles */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3202 |
[role="treeitem"] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3203 |
outline: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3204 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3205 |
[role="treeitem"] .folder-label.focus { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3206 |
color: #124964; |
16 | 3207 |
box-shadow: |
3208 |
0 0 0 1px #5b9dd9, |
|
3209 |
0 0 2px 1px rgba(30, 140, 190, 0.8); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3210 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3211 |
[role="treeitem"].hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3212 |
[role="treeitem"] .folder-label.hover { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3213 |
background-color: #eaeaea; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3214 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3215 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3216 |
.tree-folder { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3217 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3218 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3219 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3220 |
[role="treeitem"] li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3221 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3222 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3223 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3224 |
/* Styles for folder indicators/depth */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3225 |
.tree-folder .tree-folder::after { |
9 | 3226 |
content: ""; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3227 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3228 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3229 |
left: 2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3230 |
border-left: 1px solid #ccc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3231 |
top: -13px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3232 |
bottom: 10px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3233 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3234 |
.tree-folder > li::before { |
9 | 3235 |
content: ""; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3236 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3237 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3238 |
border-left: 1px solid #ccc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3239 |
left: 2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3240 |
top: -5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3241 |
height: 18px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3242 |
width: 7px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3243 |
border-bottom: 1px solid #ccc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3244 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3245 |
.tree-folder > li::after { |
9 | 3246 |
content: ""; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3247 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3248 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3249 |
border-left: 1px solid #ccc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3250 |
left: 2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3251 |
bottom: -7px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3252 |
top: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3253 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3254 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3255 |
/* current-file needs to adjustment for .notice styles */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3256 |
#templateside .current-file { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3257 |
margin: -4px 0 -2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3258 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3259 |
.tree-folder > .current-file::before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3260 |
left: 4px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3261 |
height: 15px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3262 |
width: 0px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3263 |
border-left: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3264 |
top: 3px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3265 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3266 |
.tree-folder > .current-file::after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3267 |
bottom: -4px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3268 |
height: 7px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3269 |
left: 2px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3270 |
top: auto; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3271 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3272 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3273 |
/* Lines shouldn't continue on last item */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3274 |
.tree-folder > li:last-child::after, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3275 |
.tree-folder li:last-child > .tree-folder::after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3276 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3277 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3278 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3279 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3280 |
#theme-plugin-editor-label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3281 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3282 |
margin-bottom: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3283 |
font-weight: 600; |
5 | 3284 |
} |
3285 |
||
3286 |
/* rtl:ignore */ |
|
3287 |
#template textarea, |
|
3288 |
#docs-list { |
|
3289 |
direction: ltr; |
|
3290 |
} |
|
3291 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3292 |
.fileedit-sub #theme, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3293 |
.fileedit-sub #plugin { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3294 |
max-width: 40%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3295 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3296 |
.fileedit-sub .alignright { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3297 |
text-align: right; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3298 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3299 |
|
5 | 3300 |
#template p { |
3301 |
width: 97%; |
|
3302 |
} |
|
3303 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3304 |
#file-editor-linting-error { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3305 |
margin-top: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3306 |
margin-bottom: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3307 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3308 |
#file-editor-linting-error > .notice { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3309 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3310 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3311 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3312 |
#file-editor-linting-error > .notice > p { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3313 |
width: auto; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3314 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3315 |
#template .submit { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3316 |
margin-top: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3317 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3318 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3319 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3320 |
#template .submit input[type=submit][disabled] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3321 |
cursor: not-allowed; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3322 |
} |
5 | 3323 |
#templateside { |
3324 |
float: right; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3325 |
width: 16em; |
5 | 3326 |
word-wrap: break-word; |
3327 |
} |
|
3328 |
||
3329 |
#postcustomstuff p.submit { |
|
3330 |
margin: 0; |
|
3331 |
} |
|
3332 |
||
3333 |
#templateside h4 { |
|
3334 |
margin: 1em 0 0; |
|
3335 |
} |
|
3336 |
||
3337 |
#templateside li { |
|
3338 |
margin: 4px 0; |
|
3339 |
} |
|
3340 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3341 |
#templateside li:not(.howto) a, |
5 | 3342 |
.theme-editor-php .highlight { |
3343 |
display: block; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3344 |
padding: 3px 0 3px 12px; |
5 | 3345 |
text-decoration: none; |
3346 |
} |
|
3347 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3348 |
#templateside li:not(.howto) > a:first-of-type { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3349 |
padding-top: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3350 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3351 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3352 |
#templateside li.howto { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3353 |
padding: 6px 12px 12px 12px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3354 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3355 |
|
5 | 3356 |
.theme-editor-php .highlight { |
3357 |
margin: -3px 3px -3px -12px; |
|
3358 |
} |
|
3359 |
||
3360 |
#templateside .highlight { |
|
3361 |
border: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3362 |
font-weight: 600; |
5 | 3363 |
} |
3364 |
||
3365 |
.nonessential { |
|
3366 |
color: #666; |
|
3367 |
font-size: 11px; |
|
3368 |
font-style: italic; |
|
3369 |
padding-left: 12px; |
|
3370 |
} |
|
3371 |
||
3372 |
#documentation { |
|
3373 |
margin-top: 10px; |
|
3374 |
} |
|
3375 |
||
3376 |
#documentation label { |
|
9 | 3377 |
line-height: 1.8; |
5 | 3378 |
vertical-align: baseline; |
3379 |
font-weight: 600; |
|
3380 |
} |
|
3381 |
||
3382 |
.fileedit-sub { |
|
3383 |
padding: 10px 0 8px; |
|
3384 |
line-height: 180%; |
|
3385 |
} |
|
3386 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3387 |
#file-editor-warning .file-editor-warning-content { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3388 |
margin: 25px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3389 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3390 |
|
5 | 3391 |
/* @todo: can we use a common class for these? */ |
3392 |
.nav-menus-php .item-edit:before, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3393 |
.widget-top .widget-action .toggle-indicator:before, |
5 | 3394 |
.control-section .accordion-section-title:after, |
3395 |
.accordion-section-title:after { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3396 |
content: "\f140"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3397 |
font: normal 20px/1 dashicons; |
5 | 3398 |
speak: none; |
3399 |
display: block; |
|
3400 |
-webkit-font-smoothing: antialiased; |
|
3401 |
-moz-osx-font-smoothing: grayscale; |
|
16 | 3402 |
text-decoration: none; |
5 | 3403 |
} |
3404 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3405 |
.widget-top .widget-action .toggle-indicator:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3406 |
padding: 1px 2px 1px 0px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3407 |
border-radius: 50%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3408 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3409 |
|
5 | 3410 |
.handlediv, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3411 |
.postbox .handlediv.button-link, |
5 | 3412 |
.item-edit, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3413 |
.toggle-indicator, |
5 | 3414 |
.accordion-section-title:after { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3415 |
color: #72777c; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3416 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3417 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3418 |
.widget-action { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3419 |
color: #555d66; /* #fafafa background in the Widgets screen */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3420 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3421 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3422 |
.widget-top:hover .widget-action, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3423 |
.widget-action:focus, |
5 | 3424 |
.handlediv:hover, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3425 |
.handlediv:focus, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3426 |
.postbox .handlediv.button-link:hover, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3427 |
.postbox .handlediv.button-link:focus, |
5 | 3428 |
.item-edit:hover, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3429 |
.item-edit:focus, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3430 |
.sidebar-name:hover .toggle-indicator, |
5 | 3431 |
.accordion-section-title:hover:after { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3432 |
color: #23282d; |
16 | 3433 |
/* Only visible in Windows High Contrast mode */ |
3434 |
outline: 1px solid transparent; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3435 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3436 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3437 |
.widget-top .widget-action:focus .toggle-indicator:before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3438 |
box-shadow: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3439 |
0 0 0 1px #5b9dd9, |
9 | 3440 |
0 0 2px 1px rgba(30, 140, 190, 0.8); |
5 | 3441 |
} |
3442 |
||
3443 |
.control-section .accordion-section-title:after, |
|
3444 |
.accordion-section-title:after { |
|
3445 |
float: right; |
|
3446 |
right: 20px; |
|
3447 |
top: -2px; |
|
3448 |
} |
|
3449 |
||
3450 |
.control-section.open .accordion-section-title:after, |
|
3451 |
#customize-info.open .accordion-section-title:after, |
|
3452 |
.nav-menus-php .menu-item-edit-active .item-edit:before, |
|
9 | 3453 |
.widget.open .widget-top .widget-action .toggle-indicator:before, |
3454 |
.widget.widget-in-question .widget-top .widget-action .toggle-indicator:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3455 |
content: "\f142"; |
5 | 3456 |
} |
3457 |
||
3458 |
/*! |
|
3459 |
* jQuery UI Draggable/Sortable 1.11.4 |
|
3460 |
* http://jqueryui.com |
|
3461 |
* |
|
3462 |
* Copyright jQuery Foundation and other contributors |
|
3463 |
* Released under the MIT license. |
|
3464 |
* http://jquery.org/license |
|
3465 |
*/ |
|
3466 |
.ui-draggable-handle, |
|
3467 |
.ui-sortable-handle { |
|
3468 |
touch-action: none; |
|
3469 |
} |
|
3470 |
||
3471 |
/* Accordion */ |
|
3472 |
.accordion-section { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3473 |
border-bottom: 1px solid #ddd; |
5 | 3474 |
margin: 0; |
3475 |
} |
|
3476 |
||
3477 |
.accordion-section.open .accordion-section-content, |
|
3478 |
.no-js .accordion-section .accordion-section-content { |
|
3479 |
display: block; |
|
3480 |
} |
|
3481 |
||
3482 |
.accordion-section.open:hover { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3483 |
border-bottom-color: #ddd; |
5 | 3484 |
} |
3485 |
||
3486 |
.accordion-section-content { |
|
3487 |
display: none; |
|
3488 |
padding: 10px 20px 15px; |
|
3489 |
overflow: hidden; |
|
3490 |
background: #fff; |
|
3491 |
} |
|
3492 |
||
3493 |
.accordion-section-title { |
|
3494 |
margin: 0; |
|
3495 |
padding: 12px 15px 15px; |
|
3496 |
position: relative; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3497 |
border-left: 1px solid #ddd; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3498 |
border-right: 1px solid #ddd; |
5 | 3499 |
-webkit-user-select: none; |
3500 |
-moz-user-select: none; |
|
3501 |
-ms-user-select: none; |
|
3502 |
user-select: none; |
|
3503 |
} |
|
3504 |
||
3505 |
.js .accordion-section-title { |
|
3506 |
cursor: pointer; |
|
3507 |
} |
|
3508 |
||
3509 |
.js .accordion-section-title:after { |
|
3510 |
position: absolute; |
|
3511 |
top: 12px; |
|
3512 |
right: 10px; |
|
3513 |
z-index: 1; |
|
3514 |
} |
|
3515 |
||
3516 |
.accordion-section-title:focus { |
|
16 | 3517 |
/* Only visible in Windows High Contrast mode */ |
3518 |
outline: 1px solid transparent; |
|
5 | 3519 |
} |
3520 |
||
3521 |
.accordion-section-title:hover:after, |
|
3522 |
.accordion-section-title:focus:after { |
|
3523 |
border-color: #a0a5aa transparent; |
|
16 | 3524 |
/* Only visible in Windows High Contrast mode */ |
3525 |
outline: 1px solid transparent; |
|
5 | 3526 |
} |
3527 |
||
3528 |
.cannot-expand .accordion-section-title { |
|
3529 |
cursor: auto; |
|
3530 |
} |
|
3531 |
||
3532 |
.cannot-expand .accordion-section-title:after { |
|
3533 |
display: none; |
|
3534 |
} |
|
3535 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3536 |
.control-section .accordion-section-title, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3537 |
.customize-pane-child .accordion-section-title { |
5 | 3538 |
border-left: none; |
3539 |
border-right: none; |
|
3540 |
padding: 10px 10px 11px 14px; |
|
9 | 3541 |
line-height: 1.55; |
5 | 3542 |
background: #fff; |
3543 |
} |
|
3544 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3545 |
.control-section .accordion-section-title:after, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3546 |
.customize-pane-child .accordion-section-title:after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3547 |
top: calc(50% - 10px); /* Arrow height is 20px, so use half of that to vertically center */ |
5 | 3548 |
} |
3549 |
||
3550 |
.js .control-section:hover .accordion-section-title, |
|
3551 |
.js .control-section .accordion-section-title:hover, |
|
3552 |
.js .control-section.open .accordion-section-title, |
|
3553 |
.js .control-section .accordion-section-title:focus { |
|
3554 |
color: #23282d; |
|
3555 |
background: #f5f5f5; |
|
3556 |
} |
|
3557 |
||
3558 |
.control-section.open .accordion-section-title { |
|
3559 |
/* When expanded */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3560 |
border-bottom: 1px solid #ddd; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3561 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3562 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3563 |
/* Edit Site */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3564 |
.network-admin .edit-site-actions { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3565 |
margin-top: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3566 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3567 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3568 |
/* My Sites */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3569 |
.my-sites { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3570 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3571 |
overflow: auto; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3572 |
zoom: 1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3573 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3574 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3575 |
.my-sites li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3576 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3577 |
padding: 8px 3%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3578 |
min-height: 130px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3579 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3580 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3581 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3582 |
@media only screen and (max-width: 599px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3583 |
.my-sites li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3584 |
min-height: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3585 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3586 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3587 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3588 |
@media only screen and (min-width: 600px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3589 |
.my-sites.striped li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3590 |
background-color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3591 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3592 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3593 |
.my-sites.striped li:after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3594 |
content: ""; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3595 |
width: 1px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3596 |
height: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3597 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3598 |
top: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3599 |
right: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3600 |
background: #ccc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3601 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3602 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3603 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3604 |
@media only screen and (min-width: 600px) and (max-width: 699px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3605 |
.my-sites li{ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3606 |
float: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3607 |
width: 44%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3608 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3609 |
.my-sites.striped li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3610 |
background-color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3611 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3612 |
.my-sites.striped li:nth-of-type(2n+1) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3613 |
clear: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3614 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3615 |
.my-sites.striped li:nth-of-type(2n+2):after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3616 |
content: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3617 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3618 |
.my-sites li:nth-of-type(4n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3619 |
.my-sites li:nth-of-type(4n+2) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3620 |
background-color: #f9f9f9; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3621 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3622 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3623 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3624 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3625 |
@media only screen and (min-width: 700px) and (max-width: 1199px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3626 |
.my-sites li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3627 |
float: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3628 |
width: 27.333333%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3629 |
background-color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3630 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3631 |
.my-sites.striped li:nth-of-type(3n+3):after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3632 |
content: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3633 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3634 |
.my-sites li:nth-of-type(6n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3635 |
.my-sites li:nth-of-type(6n+2), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3636 |
.my-sites li:nth-of-type(6n+3) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3637 |
background-color: #f9f9f9; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3638 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3639 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3640 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3641 |
@media only screen and (min-width: 1200px) and (max-width: 1399px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3642 |
.my-sites li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3643 |
float: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3644 |
width: 21%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3645 |
padding: 8px 2%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3646 |
background-color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3647 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3648 |
.my-sites.striped li:nth-of-type(4n+1) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3649 |
clear: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3650 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3651 |
.my-sites.striped li:nth-of-type(4n+4):after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3652 |
content: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3653 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3654 |
.my-sites li:nth-of-type(8n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3655 |
.my-sites li:nth-of-type(8n+2), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3656 |
.my-sites li:nth-of-type(8n+3), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3657 |
.my-sites li:nth-of-type(8n+4) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3658 |
background-color: #f9f9f9; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3659 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3660 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3661 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3662 |
@media only screen and (min-width: 1400px) and (max-width: 1599px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3663 |
.my-sites li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3664 |
float: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3665 |
width: 16%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3666 |
padding: 8px 2%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3667 |
background-color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3668 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3669 |
.my-sites.striped li:nth-of-type(5n+1) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3670 |
clear: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3671 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3672 |
.my-sites.striped li:nth-of-type(5n+5):after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3673 |
content: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3674 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3675 |
.my-sites li:nth-of-type(10n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3676 |
.my-sites li:nth-of-type(10n+2), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3677 |
.my-sites li:nth-of-type(10n+3), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3678 |
.my-sites li:nth-of-type(10n+4), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3679 |
.my-sites li:nth-of-type(10n+5) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3680 |
background-color: #f9f9f9; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3681 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3682 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3683 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3684 |
@media only screen and (min-width: 1600px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3685 |
.my-sites li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3686 |
float: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3687 |
width: 12.666666%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3688 |
padding: 8px 2%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3689 |
background-color: #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3690 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3691 |
.my-sites.striped li:nth-of-type(6n+1) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3692 |
clear: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3693 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3694 |
.my-sites.striped li:nth-of-type(6n+6):after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3695 |
content: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3696 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3697 |
.my-sites li:nth-of-type(12n+1), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3698 |
.my-sites li:nth-of-type(12n+2), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3699 |
.my-sites li:nth-of-type(12n+3), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3700 |
.my-sites li:nth-of-type(12n+4), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3701 |
.my-sites li:nth-of-type(12n+5), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3702 |
.my-sites li:nth-of-type(12n+6) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3703 |
background-color: #f9f9f9; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3704 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3705 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3706 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3707 |
.my-sites li a { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3708 |
text-decoration: none; |
5 | 3709 |
} |
3710 |
||
3711 |
/* =Media Queries |
|
3712 |
-------------------------------------------------------------- */ |
|
3713 |
||
3714 |
/** |
|
3715 |
* HiDPI Displays |
|
3716 |
*/ |
|
3717 |
@media print, |
|
3718 |
(-webkit-min-device-pixel-ratio: 1.25), |
|
3719 |
(min-resolution: 120dpi) { |
|
3720 |
/* Back-compat for pre-3.8 */ |
|
3721 |
div.star-holder, |
|
3722 |
div.star-holder .star-rating { |
|
3723 |
background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom left; |
|
3724 |
background-size: 21px 37px; |
|
3725 |
} |
|
3726 |
||
3727 |
.spinner { |
|
3728 |
background-image: url(../images/spinner-2x.gif); |
|
3729 |
} |
|
3730 |
||
3731 |
} |
|
3732 |
||
3733 |
@-ms-viewport { |
|
3734 |
width: device-width; |
|
3735 |
} |
|
3736 |
||
9 | 3737 |
@media screen and (max-width: 782px) { |
5 | 3738 |
html.wp-toolbar { |
3739 |
padding-top: 46px; |
|
3740 |
} |
|
3741 |
||
9 | 3742 |
.screen-reader-shortcut:focus { |
3743 |
top: -39px; |
|
3744 |
} |
|
3745 |
||
5 | 3746 |
body { |
3747 |
min-width: 240px; |
|
3748 |
overflow-x: hidden; |
|
3749 |
} |
|
3750 |
||
3751 |
body * { |
|
3752 |
-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; |
|
3753 |
} |
|
3754 |
||
3755 |
#wpcontent { |
|
3756 |
position: relative; |
|
3757 |
margin-left: 0; |
|
3758 |
padding-left: 10px; |
|
3759 |
} |
|
3760 |
||
3761 |
#wpbody-content { |
|
3762 |
padding-bottom: 100px; |
|
3763 |
} |
|
3764 |
||
3765 |
.wrap { |
|
9 | 3766 |
clear: both; |
5 | 3767 |
margin-right: 12px; |
3768 |
margin-left: 0; |
|
3769 |
} |
|
3770 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3771 |
/* categories */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3772 |
#col-left, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3773 |
#col-right { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3774 |
float: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3775 |
width: auto; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3776 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3777 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3778 |
#col-left .col-wrap, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3779 |
#col-right .col-wrap { |
5 | 3780 |
padding: 0; |
3781 |
} |
|
3782 |
||
3783 |
/* Hidden Elements */ |
|
3784 |
#collapse-menu, |
|
3785 |
.post-format-select { |
|
3786 |
display: none !important; |
|
3787 |
} |
|
3788 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3789 |
.wrap h1.wp-heading-inline { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3790 |
margin-bottom: 0.5em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3791 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3792 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3793 |
.wrap .add-new-h2, /* deprecated */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3794 |
.wrap .add-new-h2:active, /* deprecated */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3795 |
.wrap .page-title-action, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3796 |
.wrap .page-title-action:active { |
5 | 3797 |
padding: 10px 15px; |
3798 |
font-size: 14px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3799 |
white-space: nowrap; |
5 | 3800 |
} |
3801 |
||
3802 |
/* Feedback Messages */ |
|
3803 |
.notice, |
|
3804 |
.wrap div.updated, |
|
3805 |
.wrap div.error, |
|
3806 |
.media-upload-form div.error { |
|
3807 |
margin: 20px 0 10px 0; |
|
3808 |
padding: 5px 10px; |
|
3809 |
font-size: 14px; |
|
3810 |
line-height: 175%; |
|
3811 |
} |
|
3812 |
||
3813 |
.wp-core-ui .notice.is-dismissible { |
|
3814 |
padding-right: 46px; |
|
3815 |
} |
|
3816 |
||
3817 |
.notice-dismiss { |
|
3818 |
padding: 13px; |
|
3819 |
} |
|
3820 |
||
3821 |
.wrap .icon32 + h2 { |
|
3822 |
margin-top: -2px; |
|
3823 |
} |
|
3824 |
||
3825 |
.wp-responsive-open #wpbody { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3826 |
right: -16em; |
5 | 3827 |
} |
3828 |
||
3829 |
code { |
|
3830 |
word-wrap: break-word; |
|
16 | 3831 |
word-wrap: anywhere; /* Firefox. Allow breaking long words anywhere */ |
3832 |
word-break: break-word; /* Webkit: Treated similarly to word-wrap: break-word */ |
|
5 | 3833 |
} |
3834 |
||
3835 |
/* General Metabox */ |
|
3836 |
.postbox { |
|
3837 |
font-size: 14px; |
|
3838 |
} |
|
3839 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3840 |
.metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3841 |
.metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3842 |
.metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3843 |
.metabox-holder h2 { |
5 | 3844 |
padding: 12px; |
3845 |
} |
|
3846 |
||
3847 |
.postbox .handlediv { |
|
3848 |
margin-top: 3px; |
|
3849 |
} |
|
3850 |
||
3851 |
/* Subsubsub Nav */ |
|
3852 |
.subsubsub { |
|
3853 |
font-size: 16px; |
|
3854 |
text-align: center; |
|
3855 |
margin-bottom: 15px; |
|
3856 |
} |
|
3857 |
||
3858 |
/* Theme/Plugin File Editor */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3859 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3860 |
#template textarea, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3861 |
#template .CodeMirror { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3862 |
box-sizing: border-box; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3863 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3864 |
|
5 | 3865 |
#templateside { |
3866 |
float: none; |
|
3867 |
width: auto; |
|
3868 |
} |
|
3869 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3870 |
#templateside > ul { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3871 |
border-left: 1px solid #ddd; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3872 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3873 |
|
5 | 3874 |
#templateside li { |
3875 |
margin: 0; |
|
3876 |
} |
|
3877 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3878 |
#templateside li:not(.howto) a { |
5 | 3879 |
display: block; |
3880 |
padding: 5px; |
|
3881 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3882 |
#templateside li.howto { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3883 |
padding: 12px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3884 |
} |
5 | 3885 |
|
3886 |
#templateside .highlight { |
|
3887 |
padding: 5px; |
|
3888 |
margin-left: -5px; |
|
3889 |
margin-top: -5px; |
|
3890 |
} |
|
3891 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3892 |
#template > div, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3893 |
#template .notice { |
5 | 3894 |
float: none; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3895 |
margin: 1em 0; |
5 | 3896 |
width: auto; |
3897 |
} |
|
3898 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3899 |
#template .CodeMirror, |
5 | 3900 |
#template textarea { |
3901 |
width: 100%; |
|
3902 |
} |
|
3903 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3904 |
#templateside ul ul { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3905 |
padding-left: 1.5em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3906 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3907 |
[role="treeitem"] .folder-label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3908 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3909 |
padding: 5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3910 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3911 |
.tree-folder > li::before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3912 |
.tree-folder > li::after, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3913 |
.tree-folder .tree-folder::after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3914 |
left: -8px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3915 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3916 |
.tree-folder > li::before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3917 |
top: 0px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3918 |
height: 13px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3919 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3920 |
.tree-folder > .current-file::before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3921 |
left: -5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3922 |
top: 7px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3923 |
width: 4px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3924 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3925 |
.tree-folder > .current-file::after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3926 |
height: 9px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3927 |
left: -8px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3928 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3929 |
.wrap #templateside span.notice { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3930 |
margin-left: -5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3931 |
width: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3932 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3933 |
|
5 | 3934 |
.fileedit-sub .alignright { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3935 |
float: left; |
5 | 3936 |
margin-top: 15px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3937 |
width: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3938 |
text-align: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3939 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3940 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3941 |
.fileedit-sub .alignright label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3942 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3943 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3944 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3945 |
.fileedit-sub #theme, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3946 |
.fileedit-sub #plugin { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3947 |
margin-left: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3948 |
max-width: 70%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3949 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3950 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3951 |
.fileedit-sub input[type="submit"] { |
16 | 3952 |
margin-bottom: 0; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3953 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3954 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3955 |
#documentation label[for="docs-list"] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3956 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3957 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3958 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3959 |
#documentation select[name="docs-list"] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3960 |
margin-left: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3961 |
max-width: 60%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3962 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3963 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3964 |
#documentation input[type="button"] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3965 |
margin-bottom: 0; |
5 | 3966 |
} |
3967 |
||
3968 |
#wpfooter { |
|
3969 |
display: none; |
|
3970 |
} |
|
3971 |
||
3972 |
#comments-form .checkforspam { |
|
3973 |
display: none; |
|
3974 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3975 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3976 |
.edit-comment-author { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3977 |
margin: 2px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3978 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3979 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3980 |
.filter-drawer .filter-group-feature input, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3981 |
.filter-drawer .filter-group-feature label { |
9 | 3982 |
line-height: 2.1; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3983 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3984 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3985 |
.filter-drawer .filter-group-feature label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3986 |
margin-left: 32px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3987 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3988 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3989 |
.wp-filter .button.drawer-toggle { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3990 |
font-size: 13px; |
9 | 3991 |
line-height: 2; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3992 |
height: 28px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3993 |
} |
9 | 3994 |
|
3995 |
/* Fix help tab columns for smaller screens */ |
|
3996 |
#screen-meta #contextual-help-wrap { |
|
3997 |
overflow: visible; |
|
3998 |
} |
|
3999 |
||
4000 |
#screen-meta #contextual-help-back, |
|
4001 |
#screen-meta .contextual-help-sidebar { |
|
4002 |
display: none; |
|
4003 |
} |
|
4004 |
||
4005 |
#screen-meta .contextual-help-tabs { |
|
4006 |
clear: both; |
|
4007 |
width: 100%; |
|
4008 |
float: none; |
|
4009 |
} |
|
4010 |
||
4011 |
#screen-meta .contextual-help-tabs ul { |
|
4012 |
margin: 0 0 1em; |
|
4013 |
padding: 1em 0 0; |
|
4014 |
} |
|
4015 |
||
4016 |
#screen-meta .contextual-help-tabs .active { |
|
4017 |
margin: 0; |
|
4018 |
} |
|
4019 |
||
4020 |
#screen-meta .contextual-help-tabs-wrap { |
|
4021 |
clear: both; |
|
4022 |
max-width: 100%; |
|
4023 |
float: none; |
|
4024 |
} |
|
4025 |
||
16 | 4026 |
#screen-meta, |
4027 |
#screen-meta-links { |
|
4028 |
margin-right: 10px; |
|
4029 |
} |
|
4030 |
||
9 | 4031 |
#screen-meta-links { |
4032 |
margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */ |
|
4033 |
} |
|
16 | 4034 |
|
4035 |
.wp-filter .search-form input[type="search"] { |
|
4036 |
font-size: 1rem; |
|
4037 |
} |
|
4038 |
||
4039 |
.wp-filter .search-form.search-plugins { |
|
4040 |
/* This element is a flex item. */ |
|
4041 |
min-width: 100%; |
|
4042 |
} |
|
5 | 4043 |
} |
4044 |
||
4045 |
/* Smartphone */ |
|
4046 |
@media screen and (max-width: 600px) { |
|
4047 |
/* Disable horizontal scroll when responsive menu is open |
|
4048 |
since we push the main content off to the right. */ |
|
4049 |
#wpwrap.wp-responsive-open { |
|
4050 |
overflow-x: hidden; |
|
4051 |
} |
|
4052 |
||
4053 |
html.wp-toolbar { |
|
4054 |
padding-top: 0; |
|
4055 |
} |
|
4056 |
||
9 | 4057 |
.screen-reader-shortcut:focus { |
4058 |
top: 7px; |
|
4059 |
} |
|
4060 |
||
5 | 4061 |
#wpbody { |
4062 |
padding-top: 46px; |
|
4063 |
} |
|
4064 |
||
4065 |
/* Keep full-width boxes on Edit Post page from causing horizontal scroll */ |
|
4066 |
div#post-body.metabox-holder.columns-1 { |
|
4067 |
overflow-x: hidden; |
|
4068 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4069 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4070 |
h1.nav-tab-wrapper, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4071 |
.wrap h2.nav-tab-wrapper, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4072 |
.nav-tab-wrapper { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4073 |
border-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4074 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4075 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4076 |
h1 .nav-tab, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4077 |
h2 .nav-tab, |
9 | 4078 |
h3 .nav-tab, |
4079 |
nav .nav-tab { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4080 |
margin: 10px 10px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4081 |
border-bottom: 1px solid #ccc; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4082 |
} |
9 | 4083 |
|
4084 |
.nav-tab-active:hover, |
|
4085 |
.nav-tab-active:focus, |
|
4086 |
.nav-tab-active:focus:active { |
|
4087 |
border-bottom: 1px solid #ccc; |
|
4088 |
} |
|
16 | 4089 |
|
4090 |
.wp-filter .search-form input[type="search"] { |
|
4091 |
width: 100%; |
|
4092 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4093 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4094 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4095 |
@media screen and (max-width: 320px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4096 |
/* Prevent default center alignment and larger font for the Right Now widget when |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4097 |
the network dashboard is viewed on a small mobile device. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4098 |
#network_dashboard_right_now .subsubsub { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4099 |
font-size: 14px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4100 |
text-align: left; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4101 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4102 |
} |