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