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