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