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