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