author | ymh <ymh.work@gmail.com> |
Fri, 05 Sep 2025 18:40:08 +0200 | |
changeset 21 | 48c4eec2b7e6 |
parent 19 | 3d72ae0968f4 |
child 22 | 8c2e4d02f4ef |
permissions | -rw-r--r-- |
5 | 1 |
/* Include margin and padding in the width calculation of input and textarea. */ |
2 |
input, |
|
16 | 3 |
select, |
4 |
textarea, |
|
5 |
button { |
|
6 |
box-sizing: border-box; |
|
7 |
font-family: inherit; |
|
8 |
font-size: inherit; |
|
9 |
font-weight: inherit; |
|
10 |
} |
|
11 |
||
12 |
textarea, |
|
13 |
input { |
|
14 |
font-size: 14px; |
|
15 |
} |
|
16 |
||
5 | 17 |
textarea { |
16 | 18 |
overflow: auto; |
19 |
padding: 2px 6px; |
|
20 |
/* inherits font size 14px */ |
|
21 |
line-height: 1.42857143; /* 20px */ |
|
22 |
resize: vertical; |
|
23 |
} |
|
24 |
||
25 |
input, |
|
26 |
select { |
|
27 |
margin: 0 1px; |
|
28 |
} |
|
29 |
||
30 |
textarea.code { |
|
19 | 31 |
padding: 4px 6px 1px; |
5 | 32 |
} |
33 |
||
34 |
input[type="text"], |
|
35 |
input[type="password"], |
|
36 |
input[type="color"], |
|
37 |
input[type="date"], |
|
38 |
input[type="datetime"], |
|
39 |
input[type="datetime-local"], |
|
40 |
input[type="email"], |
|
41 |
input[type="month"], |
|
42 |
input[type="number"], |
|
43 |
input[type="search"], |
|
44 |
input[type="tel"], |
|
45 |
input[type="time"], |
|
46 |
input[type="url"], |
|
47 |
input[type="week"], |
|
48 |
select, |
|
49 |
textarea { |
|
16 | 50 |
box-shadow: 0 0 0 transparent; |
51 |
border-radius: 4px; |
|
18 | 52 |
border: 1px solid #8c8f94; |
5 | 53 |
background-color: #fff; |
18 | 54 |
color: #2c3338; |
16 | 55 |
} |
56 |
||
57 |
input[type="text"], |
|
58 |
input[type="password"], |
|
59 |
input[type="date"], |
|
60 |
input[type="datetime"], |
|
61 |
input[type="datetime-local"], |
|
62 |
input[type="email"], |
|
63 |
input[type="month"], |
|
64 |
input[type="number"], |
|
65 |
input[type="search"], |
|
66 |
input[type="tel"], |
|
67 |
input[type="time"], |
|
68 |
input[type="url"], |
|
69 |
input[type="week"] { |
|
70 |
padding: 0 8px; |
|
71 |
/* inherits font size 14px */ |
|
72 |
line-height: 2; /* 28px */ |
|
73 |
/* Only necessary for IE11 */ |
|
74 |
min-height: 30px; |
|
75 |
} |
|
76 |
||
77 |
::-webkit-datetime-edit { |
|
78 |
/* inherits font size 14px */ |
|
79 |
line-height: 1.85714286; /* 26px */ |
|
5 | 80 |
} |
81 |
||
82 |
input[type="text"]:focus, |
|
83 |
input[type="password"]:focus, |
|
84 |
input[type="color"]:focus, |
|
85 |
input[type="date"]:focus, |
|
86 |
input[type="datetime"]:focus, |
|
87 |
input[type="datetime-local"]:focus, |
|
88 |
input[type="email"]:focus, |
|
89 |
input[type="month"]:focus, |
|
90 |
input[type="number"]:focus, |
|
91 |
input[type="search"]:focus, |
|
92 |
input[type="tel"]:focus, |
|
93 |
input[type="time"]:focus, |
|
94 |
input[type="url"]:focus, |
|
95 |
input[type="week"]:focus, |
|
96 |
input[type="checkbox"]:focus, |
|
97 |
input[type="radio"]:focus, |
|
98 |
select:focus, |
|
99 |
textarea:focus { |
|
18 | 100 |
border-color: #2271b1; |
101 |
box-shadow: 0 0 0 1px #2271b1; |
|
9 | 102 |
/* Only visible in Windows High Contrast mode */ |
103 |
outline: 2px solid transparent; |
|
5 | 104 |
} |
105 |
||
106 |
/* rtl:ignore */ |
|
107 |
input[type="email"], |
|
108 |
input[type="url"] { |
|
109 |
direction: ltr; |
|
110 |
} |
|
111 |
||
112 |
input[type="checkbox"], |
|
113 |
input[type="radio"] { |
|
18 | 114 |
border: 1px solid #8c8f94; |
16 | 115 |
border-radius: 4px; |
5 | 116 |
background: #fff; |
18 | 117 |
color: #50575e; |
5 | 118 |
clear: none; |
119 |
cursor: pointer; |
|
120 |
display: inline-block; |
|
121 |
line-height: 0; |
|
16 | 122 |
height: 1rem; |
123 |
margin: -0.25rem 0.25rem 0 0; |
|
5 | 124 |
outline: 0; |
125 |
padding: 0 !important; |
|
126 |
text-align: center; |
|
127 |
vertical-align: middle; |
|
16 | 128 |
width: 1rem; |
129 |
min-width: 1rem; |
|
5 | 130 |
-webkit-appearance: none; |
9 | 131 |
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); |
5 | 132 |
transition: .05s border-color ease-in-out; |
133 |
} |
|
134 |
||
135 |
input[type="radio"]:checked + label:before { |
|
18 | 136 |
color: #8c8f94; |
5 | 137 |
} |
138 |
||
139 |
.wp-core-ui input[type="reset"]:hover, |
|
140 |
.wp-core-ui input[type="reset"]:active { |
|
18 | 141 |
color: #135e96; |
5 | 142 |
} |
143 |
||
144 |
td > input[type="checkbox"], |
|
145 |
.wp-admin p input[type="checkbox"], |
|
146 |
.wp-admin p input[type="radio"] { |
|
147 |
margin-top: 0; |
|
148 |
} |
|
149 |
||
150 |
.wp-admin p label input[type="checkbox"] { |
|
151 |
margin-top: -4px; |
|
152 |
} |
|
153 |
||
154 |
.wp-admin p label input[type="radio"] { |
|
155 |
margin-top: -2px; |
|
156 |
} |
|
157 |
||
158 |
input[type="radio"] { |
|
159 |
border-radius: 50%; |
|
16 | 160 |
margin-right: 0.25rem; |
161 |
/* 10px not sure if still necessary, comes from the MP6 redesign in r26072 */ |
|
162 |
line-height: 0.71428571; |
|
5 | 163 |
} |
164 |
||
16 | 165 |
input[type="checkbox"]:checked::before, |
166 |
input[type="radio"]:checked::before { |
|
5 | 167 |
float: left; |
168 |
display: inline-block; |
|
169 |
vertical-align: middle; |
|
16 | 170 |
width: 1rem; |
18 | 171 |
speak: never; |
5 | 172 |
-webkit-font-smoothing: antialiased; |
173 |
-moz-osx-font-smoothing: grayscale; |
|
174 |
} |
|
175 |
||
16 | 176 |
input[type="checkbox"]:checked::before { |
177 |
/* Use the "Yes" SVG Dashicon */ |
|
18 | 178 |
content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E"); |
16 | 179 |
margin: -0.1875rem 0 0 -0.25rem; |
180 |
height: 1.3125rem; |
|
181 |
width: 1.3125rem; |
|
5 | 182 |
} |
183 |
||
16 | 184 |
input[type="radio"]:checked::before { |
185 |
content: ""; |
|
186 |
border-radius: 50%; |
|
187 |
width: 0.5rem; /* 8px */ |
|
188 |
height: 0.5rem; /* 8px */ |
|
189 |
margin: 0.1875rem; /* 3px */ |
|
18 | 190 |
background-color: #3582c4; |
16 | 191 |
/* 16px not sure if still necessary, comes from the MP6 redesign in r26072 */ |
192 |
line-height: 1.14285714; |
|
5 | 193 |
} |
194 |
||
195 |
@-moz-document url-prefix() { |
|
196 |
input[type="checkbox"], |
|
197 |
input[type="radio"], |
|
198 |
.form-table input.tog { |
|
199 |
margin-bottom: -1px; |
|
200 |
} |
|
201 |
} |
|
202 |
||
203 |
/* Search */ |
|
204 |
input[type="search"] { |
|
205 |
-webkit-appearance: textfield; |
|
206 |
} |
|
207 |
||
208 |
input[type="search"]::-webkit-search-decoration { |
|
209 |
display: none; |
|
210 |
} |
|
211 |
||
212 |
.wp-admin input[type="file"] { |
|
213 |
padding: 3px 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
214 |
cursor: pointer; |
5 | 215 |
} |
216 |
||
217 |
input.readonly, |
|
218 |
input[readonly], |
|
219 |
textarea.readonly, |
|
220 |
textarea[readonly] { |
|
18 | 221 |
background-color: #f0f0f1; |
5 | 222 |
} |
223 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
224 |
::-webkit-input-placeholder { |
18 | 225 |
color: #646970; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
226 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
227 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
228 |
::-moz-placeholder { |
18 | 229 |
color: #646970; |
9 | 230 |
opacity: 1; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
231 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
232 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
233 |
:-ms-input-placeholder { |
18 | 234 |
color: #646970; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
235 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
236 |
|
18 | 237 |
.form-invalid .form-required, |
238 |
.form-invalid .form-required:focus, |
|
239 |
.form-invalid.form-required input, |
|
240 |
.form-invalid.form-required input:focus, |
|
241 |
.form-invalid.form-required select, |
|
242 |
.form-invalid.form-required select:focus { |
|
243 |
border-color: #d63638 !important; |
|
244 |
box-shadow: 0 0 2px rgba(214, 54, 56, 0.8); |
|
5 | 245 |
} |
246 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
247 |
.form-table .form-required.form-invalid td:after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
248 |
content: "\f534"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
249 |
font: normal 20px/1 dashicons; |
18 | 250 |
color: #d63638; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
251 |
margin-left: -25px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
252 |
vertical-align: middle; |
5 | 253 |
} |
254 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
255 |
/* Adjust error indicator for password layout */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
256 |
.form-table .form-required.user-pass1-wrap.form-invalid td:after { |
9 | 257 |
content: ""; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
258 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
259 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
260 |
.form-table .form-required.user-pass1-wrap.form-invalid .password-input-wrapper:after { |
9 | 261 |
content: "\f534"; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
262 |
font: normal 20px/1 dashicons; |
18 | 263 |
color: #d63638; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
264 |
margin: 0 6px 0 -29px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
265 |
vertical-align: middle; |
5 | 266 |
} |
267 |
||
268 |
.form-input-tip { |
|
18 | 269 |
color: #646970; |
5 | 270 |
} |
271 |
||
272 |
input:disabled, |
|
273 |
input.disabled, |
|
274 |
select:disabled, |
|
275 |
select.disabled, |
|
276 |
textarea:disabled, |
|
277 |
textarea.disabled { |
|
9 | 278 |
background: rgba(255, 255, 255, 0.5); |
18 | 279 |
border-color: rgba(220, 220, 222, 0.75); |
9 | 280 |
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04); |
18 | 281 |
color: rgba(44, 51, 56, 0.5); |
5 | 282 |
} |
283 |
||
284 |
input[type="file"]:disabled, |
|
285 |
input[type="file"].disabled, |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
286 |
input[type="file"][aria-disabled="true"], |
5 | 287 |
input[type="range"]:disabled, |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
288 |
input[type="range"].disabled, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
289 |
input[type="range"][aria-disabled="true"] { |
5 | 290 |
background: none; |
291 |
box-shadow: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
292 |
cursor: default; |
5 | 293 |
} |
294 |
||
295 |
input[type="checkbox"]:disabled, |
|
296 |
input[type="checkbox"].disabled, |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
297 |
input[type="checkbox"][aria-disabled="true"], |
5 | 298 |
input[type="radio"]:disabled, |
299 |
input[type="radio"].disabled, |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
300 |
input[type="radio"][aria-disabled="true"], |
5 | 301 |
input[type="checkbox"]:disabled:checked:before, |
302 |
input[type="checkbox"].disabled:checked:before, |
|
303 |
input[type="radio"]:disabled:checked:before, |
|
304 |
input[type="radio"].disabled:checked:before { |
|
305 |
opacity: 0.7; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
306 |
cursor: default; |
5 | 307 |
} |
308 |
||
309 |
/*------------------------------------------------------------------------------ |
|
310 |
2.0 - Forms |
|
311 |
------------------------------------------------------------------------------*/ |
|
312 |
||
16 | 313 |
/* Select styles are based on the default button in buttons.css */ |
314 |
.wp-core-ui select { |
|
315 |
font-size: 14px; |
|
316 |
line-height: 2; /* 28px */ |
|
18 | 317 |
color: #2c3338; |
318 |
border-color: #8c8f94; |
|
16 | 319 |
box-shadow: none; |
320 |
border-radius: 3px; |
|
321 |
padding: 0 24px 0 8px; |
|
322 |
min-height: 30px; |
|
323 |
max-width: 25rem; |
|
324 |
-webkit-appearance: none; |
|
325 |
/* The SVG is arrow-down-alt2 from Dashicons. */ |
|
326 |
background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat right 5px top 55%; |
|
327 |
background-size: 16px 16px; |
|
328 |
cursor: pointer; |
|
5 | 329 |
vertical-align: middle; |
330 |
} |
|
331 |
||
16 | 332 |
.wp-core-ui select:hover { |
18 | 333 |
color: #2271b1; |
16 | 334 |
} |
335 |
||
336 |
.wp-core-ui select:focus { |
|
18 | 337 |
border-color: #2271b1; |
338 |
color: #0a4b78; |
|
339 |
box-shadow: 0 0 0 1px #2271b1; |
|
16 | 340 |
} |
341 |
||
342 |
.wp-core-ui select:active { |
|
18 | 343 |
border-color: #8c8f94; |
16 | 344 |
box-shadow: none; |
345 |
} |
|
346 |
||
347 |
.wp-core-ui select.disabled, |
|
348 |
.wp-core-ui select:disabled { |
|
18 | 349 |
color: #a7aaad; |
350 |
border-color: #dcdcde; |
|
351 |
background-color: #f6f7f7; |
|
16 | 352 |
/* The SVG is arrow-down-alt2 from Dashicons. */ |
353 |
background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23a0a5aa%22%2F%3E%3C%2Fsvg%3E'); |
|
354 |
box-shadow: none; |
|
355 |
text-shadow: 0 1px 0 #fff; |
|
356 |
cursor: default; |
|
357 |
transform: none; |
|
358 |
} |
|
359 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
360 |
.wp-core-ui select[aria-disabled="true"] { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
361 |
cursor: default; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
362 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
363 |
|
16 | 364 |
/* Reset Firefox inner outline that appears on :focus. */ |
365 |
/* This ruleset overrides the color change on :focus thus needs to be after select:focus. */ |
|
366 |
.wp-core-ui select:-moz-focusring { |
|
367 |
color: transparent; |
|
18 | 368 |
text-shadow: 0 0 0 #0a4b78; |
16 | 369 |
} |
370 |
||
371 |
/* Remove background focus style from IE11 while keeping focus style available on option elements. */ |
|
372 |
.wp-core-ui select::-ms-value { |
|
373 |
background: transparent; |
|
18 | 374 |
color: #50575e; |
16 | 375 |
} |
376 |
||
377 |
.wp-core-ui select:hover::-ms-value { |
|
18 | 378 |
color: #2271b1; |
16 | 379 |
} |
380 |
||
381 |
.wp-core-ui select:focus::-ms-value { |
|
18 | 382 |
color: #0a4b78; |
16 | 383 |
} |
384 |
||
385 |
.wp-core-ui select.disabled::-ms-value, |
|
386 |
.wp-core-ui select:disabled::-ms-value { |
|
18 | 387 |
color: #a7aaad; |
16 | 388 |
} |
389 |
||
390 |
/* Hide the native down arrow for select element on IE. */ |
|
391 |
.wp-core-ui select::-ms-expand { |
|
392 |
display: none; |
|
393 |
} |
|
394 |
||
5 | 395 |
.wp-admin .button-cancel { |
16 | 396 |
display: inline-block; |
397 |
min-height: 28px; |
|
5 | 398 |
padding: 0 5px; |
399 |
line-height: 2; |
|
400 |
} |
|
401 |
||
402 |
.meta-box-sortables select { |
|
403 |
max-width: 100%; |
|
404 |
} |
|
405 |
||
16 | 406 |
.meta-box-sortables input { |
407 |
vertical-align: middle; |
|
408 |
} |
|
409 |
||
410 |
.misc-pub-post-status select { |
|
411 |
margin-top: 0; |
|
412 |
} |
|
413 |
||
414 |
.wp-core-ui select[multiple] { |
|
5 | 415 |
height: auto; |
16 | 416 |
padding-right: 8px; |
417 |
background: #fff; |
|
5 | 418 |
} |
419 |
||
420 |
.submit { |
|
421 |
padding: 1.5em 0; |
|
422 |
margin: 5px 0; |
|
423 |
border-bottom-left-radius: 3px; |
|
424 |
border-bottom-right-radius: 3px; |
|
425 |
border: none; |
|
426 |
} |
|
427 |
||
428 |
form p.submit a.cancel:hover { |
|
429 |
text-decoration: none; |
|
430 |
} |
|
431 |
||
432 |
p.submit { |
|
433 |
text-align: left; |
|
434 |
max-width: 100%; |
|
435 |
margin-top: 20px; |
|
436 |
padding-top: 10px; |
|
437 |
} |
|
438 |
||
439 |
.textright p.submit { |
|
440 |
border: none; |
|
441 |
text-align: right; |
|
442 |
} |
|
443 |
||
444 |
table.form-table + p.submit, |
|
445 |
table.form-table + input + p.submit, |
|
446 |
table.form-table + input + input + p.submit { |
|
447 |
border-top: none; |
|
448 |
padding-top: 0; |
|
449 |
} |
|
450 |
||
451 |
#minor-publishing-actions input, |
|
452 |
#major-publishing-actions input, |
|
453 |
#minor-publishing-actions .preview { |
|
454 |
text-align: center; |
|
455 |
} |
|
456 |
||
457 |
textarea.all-options, |
|
458 |
input.all-options { |
|
459 |
width: 250px; |
|
460 |
} |
|
461 |
||
462 |
input.large-text, |
|
463 |
textarea.large-text { |
|
464 |
width: 99%; |
|
465 |
} |
|
466 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
467 |
.regular-text { |
5 | 468 |
width: 25em; |
469 |
} |
|
470 |
||
471 |
input.small-text { |
|
472 |
width: 50px; |
|
16 | 473 |
padding: 0 6px; |
474 |
} |
|
475 |
||
476 |
label input.small-text { |
|
477 |
margin-top: -4px; |
|
5 | 478 |
} |
479 |
||
480 |
input[type="number"].small-text { |
|
481 |
width: 65px; |
|
16 | 482 |
padding-right: 0; |
5 | 483 |
} |
484 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
485 |
input.tiny-text { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
486 |
width: 35px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
487 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
488 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
489 |
input[type="number"].tiny-text { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
490 |
width: 45px; |
16 | 491 |
padding-right: 0; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
492 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
493 |
|
5 | 494 |
#doaction, |
495 |
#doaction2, |
|
496 |
#post-query-submit { |
|
16 | 497 |
margin: 0 8px 0 0; |
5 | 498 |
} |
499 |
||
18 | 500 |
/* @since 5.7.0 secondary bulk action controls require JS. */ |
501 |
.no-js label[for="bulk-action-selector-bottom"], |
|
502 |
.no-js select#bulk-action-selector-bottom, |
|
503 |
.no-js input#doaction2, |
|
504 |
.no-js label[for="new_role2"], |
|
505 |
.no-js select#new_role2, |
|
506 |
.no-js input#changeit2 { |
|
507 |
display: none; |
|
508 |
} |
|
509 |
||
5 | 510 |
.tablenav .actions select { |
511 |
float: left; |
|
512 |
margin-right: 6px; |
|
16 | 513 |
max-width: 12.5rem; |
5 | 514 |
} |
515 |
||
516 |
#timezone_string option { |
|
517 |
margin-left: 1em; |
|
518 |
} |
|
519 |
||
9 | 520 |
.wp-hide-pw > .dashicons, |
521 |
.wp-cancel-pw > .dashicons { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
522 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
523 |
top: 3px; |
16 | 524 |
width: 1.25rem; |
525 |
height: 1.25rem; |
|
526 |
top: 0.25rem; |
|
527 |
font-size: 20px; |
|
5 | 528 |
} |
529 |
||
9 | 530 |
.wp-cancel-pw .dashicons-no { |
531 |
display: none; |
|
532 |
} |
|
533 |
||
5 | 534 |
label, |
535 |
#your-profile label + a { |
|
536 |
vertical-align: middle; |
|
537 |
} |
|
538 |
||
539 |
fieldset label, |
|
540 |
#your-profile label + a { |
|
541 |
vertical-align: middle; |
|
542 |
} |
|
543 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
544 |
.options-media-php [for*="_size_"] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
545 |
min-width: 10em; |
5 | 546 |
vertical-align: baseline; |
547 |
} |
|
548 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
549 |
.options-media-php .small-text[name*="_size_"] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
550 |
margin: 0 0 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
551 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
552 |
|
18 | 553 |
.wp-generate-pw { |
554 |
margin-top: 1em; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
555 |
position: relative; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
556 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
557 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
558 |
.wp-pwd button { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
559 |
height: min-content; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
560 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
561 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
562 |
.wp-pwd button.pwd-toggle .dashicons { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
563 |
position: relative; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
564 |
top: 0.25rem; |
18 | 565 |
} |
566 |
||
567 |
.wp-pwd { |
|
568 |
margin-top: 1em; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
569 |
position: relative; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
570 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
571 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
572 |
.mailserver-pass-wrap .wp-pwd { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
573 |
display: inline-block; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
574 |
margin-top: 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
575 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
576 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
577 |
/* rtl:ignore */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
578 |
#mailserver_pass { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
579 |
padding-right: 2.5rem; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
580 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
581 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
582 |
/* rtl:ignore */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
583 |
.mailserver-pass-wrap .button.wp-hide-pw { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
584 |
background: transparent; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
585 |
border: 1px solid transparent; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
586 |
box-shadow: none; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
587 |
font-size: 14px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
588 |
line-height: 2; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
589 |
width: 2.5rem; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
590 |
min-width: 40px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
591 |
margin: 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
592 |
padding: 0 9px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
593 |
position: absolute; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
594 |
right: 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
595 |
top: 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
596 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
597 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
598 |
.mailserver-pass-wrap .button.wp-hide-pw:hover { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
599 |
background: transparent; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
600 |
border-color: transparent; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
601 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
602 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
603 |
.mailserver-pass-wrap .button.wp-hide-pw:focus { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
604 |
background: transparent; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
605 |
border-color: #3582c4; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
606 |
border-radius: 4px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
607 |
box-shadow: 0 0 0 1px #3582c4; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
608 |
/* 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
|
609 |
outline: 2px solid transparent; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
610 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
611 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
612 |
.mailserver-pass-wrap .button.wp-hide-pw:active { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
613 |
background: transparent; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
614 |
box-shadow: none; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
615 |
transform: none; |
18 | 616 |
} |
617 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
618 |
#misc-publishing-actions label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
619 |
vertical-align: baseline; |
5 | 620 |
} |
621 |
||
622 |
#pass-strength-result { |
|
18 | 623 |
background-color: #f0f0f1; |
624 |
border: 1px solid #dcdcde; |
|
625 |
color: #1d2327; |
|
9 | 626 |
margin: -1px 1px 5px; |
5 | 627 |
padding: 3px 5px; |
628 |
text-align: center; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
629 |
width: 25em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
630 |
box-sizing: border-box; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
631 |
opacity: 0; |
5 | 632 |
} |
633 |
||
634 |
#pass-strength-result.short { |
|
18 | 635 |
background-color: #ffabaf; |
636 |
border-color: #e65054; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
637 |
opacity: 1; |
5 | 638 |
} |
639 |
||
640 |
#pass-strength-result.bad { |
|
18 | 641 |
background-color: #facfd2; |
642 |
border-color: #f86368; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
643 |
opacity: 1; |
5 | 644 |
} |
645 |
||
646 |
#pass-strength-result.good { |
|
18 | 647 |
background-color: #f5e6ab; |
648 |
border-color: #f0c33c; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
649 |
opacity: 1; |
5 | 650 |
} |
651 |
||
652 |
#pass-strength-result.strong { |
|
18 | 653 |
background-color: #b8e6bf; |
654 |
border-color: #68de7c; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
655 |
opacity: 1; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
656 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
657 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
658 |
.password-input-wrapper { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
659 |
display: inline-block; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
660 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
661 |
|
18 | 662 |
.password-input-wrapper input { |
663 |
font-family: Consolas, Monaco, monospace; |
|
664 |
} |
|
665 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
666 |
#pass1.short, #pass1-text.short { |
18 | 667 |
border-color: #e65054; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
668 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
669 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
670 |
#pass1.bad, #pass1-text.bad { |
18 | 671 |
border-color: #f86368; |
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 |
#pass1.good, #pass1-text.good { |
18 | 675 |
border-color: #f0c33c; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
676 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
677 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
678 |
#pass1.strong, #pass1-text.strong { |
18 | 679 |
border-color: #68de7c; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
680 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
681 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
682 |
#pass1:focus, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
683 |
#pass1-text:focus { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
684 |
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
|
685 |
/* 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
|
686 |
outline: 2px solid transparent; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
687 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
688 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
689 |
.pw-weak { |
9 | 690 |
display: none; |
5 | 691 |
} |
692 |
||
693 |
.indicator-hint { |
|
694 |
padding-top: 8px; |
|
695 |
} |
|
696 |
||
9 | 697 |
.wp-pwd [type="text"], |
698 |
.wp-pwd [type="password"] { |
|
699 |
margin-bottom: 0; |
|
700 |
/* Same height as the buttons */ |
|
16 | 701 |
min-height: 30px; |
702 |
} |
|
703 |
||
704 |
/* Hide the Edge "reveal password" native button */ |
|
705 |
.wp-pwd input::-ms-reveal { |
|
706 |
display: none; |
|
9 | 707 |
} |
708 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
709 |
#pass1-text, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
710 |
.show-password #pass1 { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
711 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
712 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
713 |
|
9 | 714 |
#pass1-text::-ms-clear { |
715 |
display: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
716 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
717 |
|
9 | 718 |
.show-password #pass1-text { |
719 |
display: inline-block; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
720 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
721 |
|
5 | 722 |
p.search-box { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
723 |
display: flex; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
724 |
flex-wrap: wrap; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
725 |
align-items: center; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
726 |
column-gap: 0.5rem; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
727 |
position: relative; |
5 | 728 |
float: right; |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
729 |
margin: 11px 0; |
5 | 730 |
} |
731 |
||
732 |
.network-admin.themes-php p.search-box { |
|
733 |
clear: left; |
|
734 |
} |
|
735 |
||
736 |
.search-box input[name="s"], |
|
737 |
.tablenav .search-plugins input[name="s"], |
|
738 |
.tagsdiv .newtag { |
|
739 |
float: left; |
|
740 |
margin: 0 4px 0 0; |
|
741 |
} |
|
742 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
743 |
.js.plugins-php .search-box .wp-filter-search { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
744 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
745 |
width: 280px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
746 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
747 |
|
5 | 748 |
input[type="text"].ui-autocomplete-loading, |
749 |
input[type="email"].ui-autocomplete-loading { |
|
750 |
background-image: url(../images/loading.gif); |
|
751 |
background-repeat: no-repeat; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
752 |
background-position: right 5px center; |
5 | 753 |
visibility: visible; |
754 |
} |
|
755 |
||
756 |
input.ui-autocomplete-input.open { |
|
757 |
border-bottom-color: transparent; |
|
758 |
} |
|
759 |
||
760 |
ul#add-to-blog-users { |
|
761 |
margin: 0 0 0 14px; |
|
762 |
} |
|
763 |
||
764 |
.ui-autocomplete { |
|
765 |
padding: 0; |
|
766 |
margin: 0; |
|
767 |
list-style: none; |
|
768 |
position: absolute; |
|
769 |
z-index: 10000; |
|
18 | 770 |
border: 1px solid #4f94d4; |
771 |
box-shadow: 0 1px 2px rgba(79, 148, 212, 0.8); |
|
5 | 772 |
background-color: #fff; |
773 |
} |
|
774 |
||
775 |
.ui-autocomplete li { |
|
776 |
margin-bottom: 0; |
|
777 |
padding: 4px 10px; |
|
778 |
white-space: nowrap; |
|
779 |
text-align: left; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
780 |
cursor: pointer; |
5 | 781 |
} |
782 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
783 |
/* Colors for the wplink toolbar autocomplete. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
784 |
.ui-autocomplete .ui-state-focus { |
18 | 785 |
background-color: #dcdcde; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
786 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
787 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
788 |
/* Colors for the tags autocomplete. */ |
18 | 789 |
.wp-tags-autocomplete .ui-state-focus, |
790 |
.wp-tags-autocomplete [aria-selected="true"] { |
|
791 |
background-color: #2271b1; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
792 |
color: #fff; |
18 | 793 |
/* Only visible in Windows High Contrast mode */ |
794 |
outline: 2px solid transparent; |
|
5 | 795 |
} |
796 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
797 |
.button-add-site-icon { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
798 |
width: 100%; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
799 |
cursor: pointer; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
800 |
text-align: center; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
801 |
border: 1px dashed #c3c4c7; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
802 |
box-sizing: border-box; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
803 |
padding: 9px 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
804 |
line-height: 1.6; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
805 |
max-width: 270px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
806 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
807 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
808 |
.button-add-site-icon:focus, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
809 |
.button-add-site-icon:hover { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
810 |
background: #fff; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
811 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
812 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
813 |
.site-icon-section .favicon-preview { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
814 |
float: left; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
815 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
816 |
.site-icon-section .app-icon-preview { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
817 |
float: left; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
818 |
margin: 0 20px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
819 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
820 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
821 |
.site-icon-section .site-icon-preview img { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
822 |
max-width: 100%; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
823 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
824 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
825 |
.button-add-site-icon:focus { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
826 |
background-color: #fff; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
827 |
border-color: #3582c4; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
828 |
border-style: solid; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
829 |
box-shadow: 0 0 0 1px #3582c4; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
830 |
outline: 2px solid transparent; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
831 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
832 |
|
5 | 833 |
/*------------------------------------------------------------------------------ |
834 |
15.0 - Comments Screen |
|
835 |
------------------------------------------------------------------------------*/ |
|
836 |
||
837 |
.form-table { |
|
838 |
border-collapse: collapse; |
|
839 |
margin-top: 0.5em; |
|
840 |
width: 100%; |
|
841 |
clear: both; |
|
842 |
} |
|
843 |
||
844 |
.form-table, |
|
845 |
.form-table td, |
|
846 |
.form-table th, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
847 |
.form-table td p { |
5 | 848 |
font-size: 14px; |
849 |
} |
|
850 |
||
851 |
.form-table td { |
|
852 |
margin-bottom: 9px; |
|
853 |
padding: 15px 10px; |
|
854 |
line-height: 1.3; |
|
855 |
vertical-align: middle; |
|
856 |
} |
|
857 |
||
858 |
.form-table th, |
|
859 |
.form-wrap label { |
|
18 | 860 |
color: #1d2327; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
861 |
font-weight: 400; |
5 | 862 |
text-shadow: none; |
863 |
vertical-align: baseline; |
|
864 |
} |
|
865 |
||
866 |
.form-table th { |
|
867 |
vertical-align: top; |
|
868 |
text-align: left; |
|
869 |
padding: 20px 10px 20px 0; |
|
870 |
width: 200px; |
|
871 |
line-height: 1.3; |
|
872 |
font-weight: 600; |
|
873 |
} |
|
874 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
875 |
.form-table th.th-full, /* Not used by core. Back-compat for pre-4.8 */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
876 |
.form-table .td-full { |
5 | 877 |
width: auto; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
878 |
padding: 20px 10px 20px 0; |
5 | 879 |
font-weight: 400; |
880 |
} |
|
881 |
||
882 |
.form-table td p { |
|
883 |
margin-top: 4px; |
|
884 |
margin-bottom: 0; |
|
885 |
} |
|
886 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
887 |
.form-table .date-time-doc { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
888 |
margin-top: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
889 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
890 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
891 |
.form-table p.timezone-info { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
892 |
margin: 1em 0; |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
893 |
display: flex; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
894 |
flex-direction: column; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
895 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
896 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
897 |
#local-time { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
898 |
margin-top: 0.5em; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
899 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
900 |
|
5 | 901 |
.form-table td fieldset label { |
16 | 902 |
margin: 0.35em 0 0.5em !important; |
5 | 903 |
display: inline-block; |
904 |
} |
|
905 |
||
18 | 906 |
.form-table td fieldset p label { |
16 | 907 |
margin-top: 0 !important; |
908 |
} |
|
909 |
||
5 | 910 |
.form-table td fieldset label, |
911 |
.form-table td fieldset p, |
|
912 |
.form-table td fieldset li { |
|
16 | 913 |
line-height: 1.4; |
5 | 914 |
} |
915 |
||
916 |
.form-table input.tog, |
|
917 |
.form-table input[type="radio"] { |
|
918 |
margin-top: -4px; |
|
919 |
margin-right: 4px; |
|
920 |
float: none; |
|
921 |
} |
|
922 |
||
923 |
.form-table .pre { |
|
924 |
padding: 8px; |
|
925 |
margin: 0; |
|
926 |
} |
|
927 |
||
928 |
table.form-table td .updated { |
|
929 |
font-size: 13px; |
|
930 |
} |
|
931 |
||
932 |
table.form-table td .updated p { |
|
933 |
font-size: 13px; |
|
934 |
margin: 0.3em 0; |
|
935 |
} |
|
936 |
||
937 |
/*------------------------------------------------------------------------------ |
|
938 |
18.0 - Users |
|
939 |
------------------------------------------------------------------------------*/ |
|
940 |
||
941 |
#profile-page .form-table textarea { |
|
942 |
width: 500px; |
|
943 |
margin-bottom: 6px; |
|
944 |
} |
|
945 |
||
946 |
#profile-page .form-table #rich_editing { |
|
947 |
margin-right: 5px |
|
948 |
} |
|
949 |
||
950 |
#your-profile legend { |
|
951 |
font-size: 22px; |
|
952 |
} |
|
953 |
||
954 |
#display_name { |
|
955 |
width: 15em; |
|
956 |
} |
|
957 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
958 |
#adduser .form-field input, |
5 | 959 |
#createuser .form-field input { |
960 |
width: 25em; |
|
961 |
} |
|
962 |
||
963 |
.color-option { |
|
964 |
display: inline-block; |
|
965 |
width: 24%; |
|
966 |
padding: 5px 15px 15px; |
|
967 |
box-sizing: border-box; |
|
968 |
margin-bottom: 3px; |
|
969 |
} |
|
970 |
||
971 |
.color-option:hover, |
|
972 |
.color-option.selected { |
|
18 | 973 |
background: #dcdcde; |
5 | 974 |
} |
975 |
||
976 |
.color-palette { |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
977 |
display: table; |
5 | 978 |
width: 100%; |
979 |
border-spacing: 0; |
|
980 |
border-collapse: collapse; |
|
981 |
} |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
982 |
.color-palette .color-palette-shade, |
5 | 983 |
.color-palette td { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
984 |
display: table-cell; |
5 | 985 |
height: 20px; |
986 |
padding: 0; |
|
987 |
border: none; |
|
988 |
} |
|
989 |
||
990 |
.color-option { |
|
991 |
cursor: pointer; |
|
992 |
} |
|
993 |
||
18 | 994 |
.create-application-password .form-field { |
995 |
max-width: 25em; |
|
996 |
} |
|
997 |
||
998 |
.create-application-password label { |
|
999 |
font-weight: 600; |
|
1000 |
} |
|
1001 |
||
1002 |
.create-application-password p.submit { |
|
1003 |
margin-bottom: 0; |
|
1004 |
padding-bottom: 0; |
|
1005 |
display: block; |
|
1006 |
} |
|
1007 |
||
1008 |
#application-passwords-section .notice { |
|
1009 |
margin-top: 20px; |
|
1010 |
margin-bottom: 0; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1011 |
word-wrap: break-word; |
18 | 1012 |
} |
1013 |
||
1014 |
.application-password-display input.code { |
|
1015 |
width: 19em; |
|
1016 |
} |
|
1017 |
||
1018 |
.auth-app-card.card { |
|
1019 |
max-width: 768px; |
|
1020 |
} |
|
1021 |
||
1022 |
.authorize-application-php .form-wrap p { |
|
1023 |
display: block; |
|
1024 |
} |
|
1025 |
||
5 | 1026 |
/*------------------------------------------------------------------------------ |
1027 |
19.0 - Tools |
|
1028 |
------------------------------------------------------------------------------*/ |
|
1029 |
||
1030 |
.tool-box .title { |
|
1031 |
margin: 8px 0; |
|
1032 |
font-size: 18px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1033 |
font-weight: 400; |
5 | 1034 |
line-height: 24px; |
1035 |
} |
|
1036 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1037 |
.label-responsive { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1038 |
vertical-align: middle; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1039 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1040 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1041 |
#export-filters p { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1042 |
margin: 0 0 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1043 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1044 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1045 |
#export-filters p.submit { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1046 |
margin: 7px 0 5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1047 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1048 |
|
5 | 1049 |
/* Card styles */ |
1050 |
||
1051 |
.card { |
|
1052 |
position: relative; |
|
1053 |
margin-top: 20px; |
|
1054 |
padding: 0.7em 2em 1em; |
|
1055 |
min-width: 255px; |
|
1056 |
max-width: 520px; |
|
18 | 1057 |
border: 1px solid #c3c4c7; |
9 | 1058 |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); |
5 | 1059 |
background: #fff; |
9 | 1060 |
box-sizing: border-box; |
5 | 1061 |
} |
1062 |
||
1063 |
/* Press this styles */ |
|
1064 |
||
1065 |
.pressthis h4 { |
|
1066 |
margin: 2em 0 1em; |
|
1067 |
} |
|
1068 |
||
1069 |
.pressthis textarea { |
|
1070 |
width: 100%; |
|
1071 |
font-size: 1em; |
|
1072 |
} |
|
1073 |
||
1074 |
#pressthis-code-wrap { |
|
1075 |
overflow: auto; |
|
1076 |
} |
|
1077 |
||
1078 |
.pressthis-bookmarklet-wrapper { |
|
1079 |
margin: 20px 0 8px; |
|
1080 |
vertical-align: top; |
|
1081 |
position: relative; |
|
1082 |
z-index: 1; |
|
1083 |
} |
|
1084 |
||
1085 |
.pressthis-bookmarklet, |
|
1086 |
.pressthis-bookmarklet:hover, |
|
1087 |
.pressthis-bookmarklet:focus, |
|
1088 |
.pressthis-bookmarklet:active { |
|
1089 |
display: inline-block; |
|
1090 |
position: relative; |
|
1091 |
cursor: move; |
|
18 | 1092 |
color: #2c3338; |
1093 |
background: #dcdcde; |
|
5 | 1094 |
border-radius: 5px; |
18 | 1095 |
border: 1px solid #c3c4c7; |
5 | 1096 |
font-style: normal; |
1097 |
line-height: 16px; |
|
1098 |
font-size: 14px; |
|
1099 |
text-decoration: none; |
|
1100 |
} |
|
1101 |
||
1102 |
.pressthis-bookmarklet:active { |
|
1103 |
outline: none; |
|
1104 |
} |
|
1105 |
||
1106 |
.pressthis-bookmarklet:after { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1107 |
content: ""; |
5 | 1108 |
width: 70%; |
1109 |
height: 55%; |
|
1110 |
z-index: -1; |
|
1111 |
position: absolute; |
|
1112 |
right: 10px; |
|
1113 |
bottom: 9px; |
|
1114 |
background: transparent; |
|
1115 |
transform: skew(20deg) rotate(6deg); |
|
1116 |
box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6); |
|
1117 |
} |
|
1118 |
||
1119 |
.pressthis-bookmarklet:hover:after { |
|
1120 |
transform: skew(20deg) rotate(9deg); |
|
1121 |
box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7); |
|
1122 |
} |
|
1123 |
||
1124 |
.pressthis-bookmarklet span { |
|
1125 |
display: inline-block; |
|
19 | 1126 |
margin: 0; |
1127 |
padding: 0 12px 8px 9px; |
|
5 | 1128 |
} |
1129 |
||
1130 |
.pressthis-bookmarklet span:before { |
|
18 | 1131 |
color: #787c82; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1132 |
font: normal 20px/1 dashicons; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1133 |
content: "\f157"; |
5 | 1134 |
position: relative; |
1135 |
display: inline-block; |
|
1136 |
top: 4px; |
|
1137 |
margin-right: 4px; |
|
1138 |
} |
|
1139 |
||
1140 |
.pressthis-js-toggle { |
|
1141 |
margin-left: 10px; |
|
1142 |
padding: 0; |
|
1143 |
height: auto; |
|
1144 |
vertical-align: top; |
|
1145 |
} |
|
1146 |
||
1147 |
/* to override the button class being applied */ |
|
1148 |
.pressthis-js-toggle.button.button { |
|
1149 |
margin-left: 10px; |
|
1150 |
padding: 0; |
|
1151 |
height: auto; |
|
1152 |
vertical-align: top; |
|
1153 |
} |
|
1154 |
||
1155 |
.pressthis-js-toggle .dashicons { |
|
1156 |
margin: 5px 8px 6px 7px; |
|
18 | 1157 |
color: #50575e; |
5 | 1158 |
} |
1159 |
||
1160 |
/*------------------------------------------------------------------------------ |
|
1161 |
20.0 - Settings |
|
1162 |
------------------------------------------------------------------------------*/ |
|
1163 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1164 |
.timezone-info code { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1165 |
white-space: nowrap; |
5 | 1166 |
} |
1167 |
||
1168 |
.defaultavatarpicker .avatar { |
|
1169 |
margin: 2px 0; |
|
1170 |
vertical-align: middle; |
|
1171 |
} |
|
1172 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1173 |
.options-general-php .date-time-text { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1174 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1175 |
min-width: 10em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1176 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1177 |
|
5 | 1178 |
.options-general-php input.small-text { |
1179 |
width: 56px; |
|
16 | 1180 |
margin: -2px 0; |
5 | 1181 |
} |
1182 |
||
1183 |
.options-general-php .spinner { |
|
1184 |
float: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1185 |
margin: -3px 3px 0; |
5 | 1186 |
} |
1187 |
||
1188 |
.settings-php .language-install-spinner, |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1189 |
.options-general-php .language-install-spinner, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1190 |
.user-edit-php .language-install-spinner, |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1191 |
.profile-php .language-install-spinner { |
5 | 1192 |
display: inline-block; |
1193 |
float: none; |
|
1194 |
margin: -3px 5px 0; |
|
1195 |
vertical-align: middle; |
|
1196 |
} |
|
1197 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1198 |
.form-table.permalink-structure .available-structure-tags { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1199 |
margin-top: 8px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1200 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1201 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1202 |
.form-table.permalink-structure .available-structure-tags ul { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1203 |
display: flex; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1204 |
flex-wrap: wrap; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1205 |
margin: 8px 0 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1206 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1207 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1208 |
.form-table.permalink-structure .available-structure-tags li { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1209 |
margin: 6px 5px 0 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1210 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1211 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1212 |
.form-table.permalink-structure .available-structure-tags li:last-child { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1213 |
margin-right: 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1214 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1215 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1216 |
.form-table.permalink-structure .structure-selection .row { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1217 |
margin-bottom: 16px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1218 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1219 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1220 |
.form-table.permalink-structure .structure-selection .row > div { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1221 |
max-width: calc(100% - 24px); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1222 |
display: inline-flex; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1223 |
flex-direction: column; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1224 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1225 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1226 |
.form-table.permalink-structure .structure-selection .row label { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1227 |
font-weight: 600; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1228 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1229 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1230 |
.form-table.permalink-structure .structure-selection .row p { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1231 |
margin-top: 0; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1232 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1233 |
|
5 | 1234 |
/*------------------------------------------------------------------------------ |
1235 |
21.0 - Network Admin |
|
1236 |
------------------------------------------------------------------------------*/ |
|
1237 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1238 |
.setup-php textarea { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1239 |
max-width: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1240 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1241 |
|
5 | 1242 |
.form-field #site-address { |
1243 |
max-width: 25em; |
|
1244 |
} |
|
1245 |
||
1246 |
.form-field #domain { |
|
1247 |
max-width: 22em; |
|
1248 |
} |
|
1249 |
||
1250 |
.form-field #site-title, |
|
1251 |
.form-field #admin-email, |
|
1252 |
.form-field #path, |
|
1253 |
.form-field #blog_registered, |
|
1254 |
.form-field #blog_last_updated { |
|
1255 |
max-width: 25em; |
|
1256 |
} |
|
1257 |
||
1258 |
.form-field #path { |
|
1259 |
margin-bottom: 5px; |
|
1260 |
} |
|
1261 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1262 |
#search-users, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1263 |
#search-sites { |
16 | 1264 |
max-width: 60%; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1265 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1266 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1267 |
.configuration-rules-label { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1268 |
font-weight: 600; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1269 |
margin-bottom: 4px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1270 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1271 |
|
5 | 1272 |
/*------------------------------------------------------------------------------ |
1273 |
Credentials check dialog for Install and Updates |
|
1274 |
------------------------------------------------------------------------------*/ |
|
1275 |
||
1276 |
.request-filesystem-credentials-dialog { |
|
1277 |
display: none; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1278 |
/* The customizer uses visibility: hidden on the body for full-overlays. */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1279 |
visibility: visible; |
5 | 1280 |
} |
1281 |
||
1282 |
.request-filesystem-credentials-dialog .notification-dialog { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1283 |
top: 10%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1284 |
max-height: 85%; |
5 | 1285 |
} |
1286 |
||
1287 |
.request-filesystem-credentials-dialog-content { |
|
1288 |
margin: 25px; |
|
1289 |
} |
|
1290 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1291 |
#request-filesystem-credentials-title { |
9 | 1292 |
font-size: 1.3em; |
1293 |
margin: 1em 0; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1294 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1295 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1296 |
.request-filesystem-credentials-form legend { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1297 |
font-size: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1298 |
padding: 1.33em 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1299 |
font-weight: 600; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1300 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1301 |
|
5 | 1302 |
.request-filesystem-credentials-form input[type="text"], |
1303 |
.request-filesystem-credentials-form input[type="password"] { |
|
1304 |
display: block; |
|
1305 |
} |
|
1306 |
||
1307 |
.request-filesystem-credentials-dialog input[type="text"], |
|
1308 |
.request-filesystem-credentials-dialog input[type="password"] { |
|
1309 |
width: 100%; |
|
1310 |
} |
|
1311 |
||
1312 |
.request-filesystem-credentials-form .field-title { |
|
1313 |
font-weight: 600; |
|
1314 |
} |
|
1315 |
||
1316 |
.request-filesystem-credentials-dialog label[for="hostname"], |
|
1317 |
.request-filesystem-credentials-dialog label[for="public_key"], |
|
1318 |
.request-filesystem-credentials-dialog label[for="private_key"] { |
|
1319 |
display: block; |
|
1320 |
margin-bottom: 1em; |
|
1321 |
} |
|
1322 |
||
1323 |
.request-filesystem-credentials-dialog .ftp-username, |
|
1324 |
.request-filesystem-credentials-dialog .ftp-password { |
|
1325 |
float: left; |
|
1326 |
width: 48%; |
|
1327 |
} |
|
1328 |
||
1329 |
.request-filesystem-credentials-dialog .ftp-password { |
|
1330 |
margin-left: 4%; |
|
1331 |
} |
|
1332 |
||
1333 |
.request-filesystem-credentials-dialog .request-filesystem-credentials-action-buttons { |
|
1334 |
text-align: right; |
|
1335 |
} |
|
1336 |
||
1337 |
.request-filesystem-credentials-dialog label[for="ftp"] { |
|
1338 |
margin-right: 10px; |
|
1339 |
} |
|
1340 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1341 |
.request-filesystem-credentials-dialog #auth-keys-desc { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1342 |
margin-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1343 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1344 |
|
5 | 1345 |
#request-filesystem-credentials-dialog .button:not(:last-child) { |
1346 |
margin-right: 10px; |
|
1347 |
} |
|
1348 |
||
1349 |
#request-filesystem-credentials-form .cancel-button { |
|
1350 |
display: none; |
|
1351 |
} |
|
1352 |
||
1353 |
#request-filesystem-credentials-dialog .cancel-button { |
|
1354 |
display: inline; |
|
1355 |
} |
|
1356 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1357 |
.request-filesystem-credentials-dialog .ftp-username, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1358 |
.request-filesystem-credentials-dialog .ftp-password { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1359 |
float: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1360 |
width: auto; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1361 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1362 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1363 |
.request-filesystem-credentials-dialog .ftp-username { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1364 |
margin-bottom: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1365 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1366 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1367 |
.request-filesystem-credentials-dialog .ftp-password { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1368 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1369 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1370 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1371 |
.request-filesystem-credentials-dialog .ftp-password em { |
18 | 1372 |
color: #8c8f94; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1373 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1374 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1375 |
.request-filesystem-credentials-dialog label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1376 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1377 |
line-height: 1.5; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1378 |
margin-bottom: 1em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1379 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1380 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1381 |
.request-filesystem-credentials-form legend { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1382 |
padding-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1383 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1384 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1385 |
.request-filesystem-credentials-form #ssh-keys legend { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1386 |
font-size: 1.3em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1387 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1388 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1389 |
.request-filesystem-credentials-form .notice { |
19 | 1390 |
margin: 0 0 20px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1391 |
clear: both; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1392 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1393 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1394 |
/*------------------------------------------------------------------------------ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1395 |
Privacy Policy settings screen |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1396 |
------------------------------------------------------------------------------*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1397 |
.tools-privacy-policy-page form { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1398 |
margin-bottom: 1.3em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1399 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1400 |
|
19 | 1401 |
.tools-privacy-policy-page input.button { |
1402 |
margin: 0 1px 0 6px; |
|
1403 |
} |
|
1404 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1405 |
.tools-privacy-policy-page select { |
19 | 1406 |
margin: 0 1px 0.5em 6px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1407 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1408 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1409 |
.tools-privacy-edit { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1410 |
margin: 1.5em 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1411 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1412 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1413 |
.tools-privacy-policy-page span { |
16 | 1414 |
line-height: 2; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1415 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1416 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1417 |
.privacy_requests .column-email { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1418 |
width: 40%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1419 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1420 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1421 |
.privacy_requests .column-type { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1422 |
text-align: center; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1423 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1424 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1425 |
.privacy_requests thead td:first-child, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1426 |
.privacy_requests tfoot td:first-child { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1427 |
border-left: 4px solid #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1428 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1429 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1430 |
.privacy_requests tbody th { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1431 |
border-left: 4px solid #fff; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1432 |
background: #fff; |
9 | 1433 |
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1434 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1435 |
|
16 | 1436 |
.privacy_requests .row-actions { |
18 | 1437 |
color: #787c82; |
16 | 1438 |
} |
1439 |
||
1440 |
.privacy_requests .row-actions.processing { |
|
1441 |
position: static; |
|
1442 |
} |
|
1443 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1444 |
.privacy_requests tbody .has-request-results th { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1445 |
box-shadow: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1446 |
} |
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 |
.privacy_requests tbody .request-results th .notice { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1449 |
margin: 0 0 5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1450 |
} |
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 |
.privacy_requests tbody td { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1453 |
background: #fff; |
9 | 1454 |
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1455 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1456 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1457 |
.privacy_requests tbody .has-request-results td { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1458 |
box-shadow: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1459 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1460 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1461 |
.privacy_requests .next_steps .button { |
16 | 1462 |
word-wrap: break-word; |
1463 |
white-space: normal; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1464 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1465 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1466 |
.privacy_requests .status-request-confirmed th, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1467 |
.privacy_requests .status-request-confirmed td { |
18 | 1468 |
background-color: #fff; |
1469 |
border-left-color: #72aee6; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1470 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1471 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1472 |
.privacy_requests .status-request-failed th, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1473 |
.privacy_requests .status-request-failed td { |
18 | 1474 |
background-color: #f6f7f7; |
1475 |
border-left-color: #d63638; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1476 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1477 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1478 |
.privacy_requests .export_personal_data_failed a { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1479 |
vertical-align: baseline; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1480 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1481 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1482 |
.status-label { |
9 | 1483 |
font-weight: 600; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1484 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1485 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1486 |
.status-label.status-request-pending { |
9 | 1487 |
font-weight: 400; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1488 |
font-style: italic; |
18 | 1489 |
color: #646970; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1490 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1491 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1492 |
.status-label.status-request-failed { |
18 | 1493 |
color: #d63638; |
9 | 1494 |
font-weight: 600; |
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 |
.wp-privacy-request-form { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1498 |
clear: both; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1499 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1500 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1501 |
.wp-privacy-request-form-field { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1502 |
margin: 1.5em 0; |
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 |
.wp-privacy-request-form input { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1506 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1507 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1508 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1509 |
.email-personal-data::before { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1510 |
display: inline-block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1511 |
font: normal 20px/1 dashicons; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1512 |
margin: 3px 5px 0 -2px; |
18 | 1513 |
speak: never; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1514 |
-webkit-font-smoothing: antialiased; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1515 |
-moz-osx-font-smoothing: grayscale; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1516 |
vertical-align: top; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1517 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1518 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1519 |
.email-personal-data--sending::before { |
18 | 1520 |
color: #d63638; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1521 |
content: "\f463"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1522 |
animation: rotation 2s infinite linear; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1523 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1524 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1525 |
.email-personal-data--sent::before { |
18 | 1526 |
color: #68de7c; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1527 |
content: "\f147"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1528 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1529 |
|
5 | 1530 |
|
1531 |
/* =Media Queries |
|
1532 |
-------------------------------------------------------------- */ |
|
1533 |
||
9 | 1534 |
@media screen and (max-width: 782px) { |
5 | 1535 |
/* Input Elements */ |
1536 |
textarea { |
|
1537 |
-webkit-appearance: none; |
|
1538 |
} |
|
1539 |
||
1540 |
input[type="text"], |
|
16 | 1541 |
input[type="password"], |
1542 |
input[type="date"], |
|
1543 |
input[type="datetime"], |
|
1544 |
input[type="datetime-local"], |
|
5 | 1545 |
input[type="email"], |
16 | 1546 |
input[type="month"], |
1547 |
input[type="number"], |
|
5 | 1548 |
input[type="search"], |
16 | 1549 |
input[type="tel"], |
1550 |
input[type="time"], |
|
1551 |
input[type="url"], |
|
1552 |
input[type="week"] { |
|
5 | 1553 |
-webkit-appearance: none; |
16 | 1554 |
padding: 3px 10px; |
1555 |
/* Only necessary for IE11 */ |
|
1556 |
min-height: 40px; |
|
5 | 1557 |
} |
1558 |
||
16 | 1559 |
::-webkit-datetime-edit { |
1560 |
line-height: 1.875; /* 30px */ |
|
5 | 1561 |
} |
1562 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1563 |
input[type="checkbox"], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1564 |
.widefat th input[type="checkbox"], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1565 |
.widefat thead td input[type="checkbox"], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1566 |
.widefat tfoot td input[type="checkbox"] { |
5 | 1567 |
-webkit-appearance: none; |
1568 |
} |
|
1569 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1570 |
.widefat th input[type="checkbox"], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1571 |
.widefat thead td input[type="checkbox"], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1572 |
.widefat tfoot td input[type="checkbox"] { |
5 | 1573 |
margin-bottom: 8px; |
1574 |
} |
|
1575 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1576 |
input[type="checkbox"]:checked:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1577 |
.widefat th input[type="checkbox"]:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1578 |
.widefat thead td input[type="checkbox"]:before, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1579 |
.widefat tfoot td input[type="checkbox"]:before { |
16 | 1580 |
width: 1.875rem; |
1581 |
height: 1.875rem; |
|
1582 |
margin: -0.1875rem -0.3125rem; |
|
5 | 1583 |
} |
1584 |
||
1585 |
input[type="radio"], |
|
1586 |
input[type="checkbox"] { |
|
16 | 1587 |
height: 1.5625rem; |
1588 |
width: 1.5625rem; |
|
5 | 1589 |
} |
1590 |
||
1591 |
.wp-admin p input[type="checkbox"], |
|
1592 |
.wp-admin p input[type="radio"] { |
|
16 | 1593 |
margin-top: -0.1875rem; |
5 | 1594 |
} |
1595 |
||
1596 |
input[type="radio"]:checked:before { |
|
1597 |
vertical-align: middle; |
|
16 | 1598 |
width: 0.5625rem; |
1599 |
height: 0.5625rem; |
|
1600 |
margin: 0.4375rem; |
|
1601 |
line-height: 0.76190476; |
|
5 | 1602 |
} |
1603 |
||
1604 |
.wp-upload-form input[type="submit"] { |
|
1605 |
margin-top: 10px; |
|
1606 |
} |
|
1607 |
||
16 | 1608 |
.wp-core-ui select, |
1609 |
.wp-admin .form-table select { |
|
1610 |
min-height: 40px; |
|
5 | 1611 |
font-size: 16px; |
16 | 1612 |
line-height: 1.625; /* 26px */ |
1613 |
padding: 5px 24px 5px 8px; |
|
5 | 1614 |
} |
1615 |
||
1616 |
.wp-admin .button-cancel { |
|
16 | 1617 |
margin-bottom: 0; |
1618 |
padding: 2px 0; |
|
5 | 1619 |
font-size: 14px; |
16 | 1620 |
vertical-align: middle; |
5 | 1621 |
} |
1622 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1623 |
#adduser .form-field input, |
5 | 1624 |
#createuser .form-field input { |
1625 |
width: 100%; |
|
1626 |
} |
|
1627 |
||
1628 |
.form-table { |
|
1629 |
box-sizing: border-box; |
|
1630 |
} |
|
1631 |
||
1632 |
.form-table th, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1633 |
.form-table td, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1634 |
.label-responsive { |
5 | 1635 |
display: block; |
1636 |
width: auto; |
|
1637 |
vertical-align: middle; |
|
1638 |
} |
|
1639 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1640 |
.label-responsive { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1641 |
margin: 0.5em 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1642 |
} |
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 |
.export-filters li { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1645 |
margin-bottom: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1646 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1647 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1648 |
.form-table .color-palette .color-palette-shade, |
5 | 1649 |
.form-table .color-palette td { |
1650 |
display: table-cell; |
|
1651 |
width: 15px; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1652 |
height: 30px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1653 |
padding: 0; |
5 | 1654 |
} |
1655 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1656 |
.form-table .color-palette { |
5 | 1657 |
margin-right: 10px; |
1658 |
} |
|
1659 |
||
1660 |
textarea, |
|
1661 |
input { |
|
1662 |
font-size: 16px; |
|
1663 |
} |
|
1664 |
||
1665 |
.form-table td input[type="text"], |
|
1666 |
.form-table td input[type="email"], |
|
1667 |
.form-table td input[type="password"], |
|
1668 |
.form-table td select, |
|
1669 |
.form-table td textarea, |
|
1670 |
.form-table span.description, |
|
1671 |
#profile-page .form-table textarea { |
|
1672 |
width: 100%; |
|
1673 |
display: block; |
|
1674 |
max-width: none; |
|
1675 |
box-sizing: border-box; |
|
1676 |
} |
|
1677 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1678 |
.form-table .form-required.form-invalid td:after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1679 |
float: right; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1680 |
margin: -30px 3px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1681 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1682 |
|
5 | 1683 |
input[type="text"].small-text, |
1684 |
input[type="search"].small-text, |
|
1685 |
input[type="password"].small-text, |
|
1686 |
input[type="number"].small-text, |
|
1687 |
input[type="number"].small-text, |
|
1688 |
.form-table input[type="text"].small-text { |
|
1689 |
width: auto; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1690 |
max-width: 4.375em; /* 70px, enough for 4 digits to fit comfortably */ |
5 | 1691 |
display: inline; |
1692 |
padding: 3px 6px; |
|
1693 |
margin: 0 3px; |
|
1694 |
} |
|
1695 |
||
19 | 1696 |
.form-table .regular-text ~ input[type="text"].small-text { |
1697 |
margin-top: 5px; |
|
1698 |
} |
|
1699 |
||
5 | 1700 |
#pass-strength-result { |
1701 |
width: 100%; |
|
1702 |
box-sizing: border-box; |
|
1703 |
padding: 8px; |
|
1704 |
} |
|
1705 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1706 |
.password-input-wrapper { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1707 |
display: block; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1708 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1709 |
|
5 | 1710 |
p.search-box { |
1711 |
float: none; |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1712 |
width: 100%; |
5 | 1713 |
margin-bottom: 20px; |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1714 |
display: flex; |
5 | 1715 |
} |
1716 |
||
1717 |
p.search-box input[name="s"] { |
|
1718 |
float: none; |
|
1719 |
width: 100%; |
|
1720 |
margin-bottom: 10px; |
|
1721 |
vertical-align: middle; |
|
1722 |
} |
|
1723 |
||
1724 |
p.search-box input[type="submit"] { |
|
1725 |
margin-bottom: 10px; |
|
1726 |
} |
|
1727 |
||
1728 |
.form-table span.description { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1729 |
display: inline; |
5 | 1730 |
padding: 4px 0 0; |
16 | 1731 |
line-height: 1.4; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1732 |
font-size: 14px; |
5 | 1733 |
} |
1734 |
||
1735 |
.form-table th { |
|
19 | 1736 |
padding: 10px 0 0; |
5 | 1737 |
border-bottom: 0; |
1738 |
} |
|
1739 |
||
1740 |
.form-table td { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1741 |
margin-bottom: 0; |
19 | 1742 |
padding: 4px 0 6px; |
5 | 1743 |
} |
1744 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1745 |
.form-table.permalink-structure td code { |
16 | 1746 |
display: inline-block; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1747 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1748 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1749 |
.form-table.permalink-structure .structure-selection { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1750 |
margin-top: 8px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1751 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1752 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1753 |
.form-table.permalink-structure .structure-selection .row > div { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1754 |
max-width: calc(100% - 36px); |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1755 |
width: 100%; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1756 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1757 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1758 |
.form-table.permalink-structure td input[type="text"] { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1759 |
margin-top: 4px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1760 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1761 |
|
5 | 1762 |
.form-table input.regular-text { |
1763 |
width: 100%; |
|
1764 |
} |
|
1765 |
||
1766 |
.form-table label { |
|
1767 |
font-size: 14px; |
|
1768 |
} |
|
1769 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1770 |
.form-table td > label:first-child { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1771 |
display: inline-block; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1772 |
margin-top: 0.35em; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1773 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1774 |
|
16 | 1775 |
.background-position-control .button-group > label { |
1776 |
font-size: 0; |
|
1777 |
} |
|
1778 |
||
5 | 1779 |
.form-table fieldset label { |
1780 |
display: block; |
|
1781 |
} |
|
1782 |
||
1783 |
.form-field #domain { |
|
1784 |
max-width: none; |
|
1785 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1786 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1787 |
/* New Password */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1788 |
.wp-pwd { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1789 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1790 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1791 |
|
16 | 1792 |
/* Needs higher specificity than normal input type text and password. */ |
1793 |
#profile-page .form-table #pass1 { |
|
1794 |
padding-right: 90px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1795 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1796 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1797 |
.wp-pwd button.button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1798 |
background: transparent; |
9 | 1799 |
border: 1px solid transparent; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1800 |
box-shadow: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1801 |
line-height: 2; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1802 |
margin: 0; |
9 | 1803 |
padding: 5px 9px; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1804 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1805 |
right: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1806 |
top: 0; |
16 | 1807 |
width: 2.375rem; |
1808 |
height: 2.375rem; |
|
1809 |
min-width: 40px; |
|
1810 |
min-height: 40px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1811 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1812 |
|
9 | 1813 |
.wp-pwd button.wp-hide-pw { |
16 | 1814 |
right: 2.5rem; |
9 | 1815 |
} |
1816 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1817 |
body.user-new-php .wp-pwd button.wp-hide-pw { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1818 |
right: 0; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1819 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1820 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1821 |
.wp-pwd button.button:hover, |
9 | 1822 |
.wp-pwd button.button:focus { |
1823 |
background: transparent; |
|
1824 |
} |
|
1825 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1826 |
.wp-pwd button.button:active { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1827 |
background: transparent; |
9 | 1828 |
box-shadow: none; |
1829 |
transform: none; |
|
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 |
.wp-pwd .button .text { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1833 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1834 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1835 |
|
16 | 1836 |
.wp-pwd [type="text"], |
1837 |
.wp-pwd [type="password"] { |
|
1838 |
line-height: 2; |
|
1839 |
padding-right: 5rem; |
|
1840 |
} |
|
1841 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1842 |
body.user-new-php .wp-pwd [type="text"], |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1843 |
body.user-new-php .wp-pwd [type="password"] { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1844 |
padding-right: 2.5rem; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1845 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1846 |
|
9 | 1847 |
.wp-cancel-pw .dashicons-no { |
1848 |
display: inline-block; |
|
1849 |
} |
|
1850 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1851 |
.mailserver-pass-wrap .wp-pwd { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1852 |
display: block; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1853 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1854 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1855 |
/* rtl:ignore */ |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1856 |
#mailserver_pass { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1857 |
padding-left: 10px; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1858 |
} |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
1859 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1860 |
.options-general-php input[type="text"].small-text { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1861 |
max-width: 6.25em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1862 |
margin: 0; |
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 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1865 |
/* Privacy Policy settings screen */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1866 |
.tools-privacy-policy-page form.wp-create-privacy-page { |
9 | 1867 |
margin-bottom: 1em; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1868 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1869 |
|
9 | 1870 |
.tools-privacy-policy-page input#set-page, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1871 |
.tools-privacy-policy-page select { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1872 |
margin: 10px 0 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1873 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1874 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1875 |
.tools-privacy-policy-page .wp-create-privacy-page span { |
9 | 1876 |
display: block; |
1877 |
margin-bottom: 1em; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1878 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1879 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1880 |
.tools-privacy-policy-page .wp-create-privacy-page .button { |
9 | 1881 |
margin-left: 0; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1882 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1883 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1884 |
.wp-list-table.privacy_requests tr:not(.inline-edit-row):not(.no-items) td.column-primary:not(.check-column) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1885 |
display: table-cell; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1886 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1887 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1888 |
.wp-list-table.privacy_requests.widefat th input, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1889 |
.wp-list-table.privacy_requests.widefat thead td input { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1890 |
margin-left: 5px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1891 |
} |
16 | 1892 |
|
1893 |
.wp-privacy-request-form-field input[type="text"] { |
|
1894 |
width: 100%; |
|
1895 |
margin-bottom: 10px; |
|
1896 |
vertical-align: middle; |
|
1897 |
} |
|
1898 |
||
9 | 1899 |
.regular-text { |
1900 |
max-width: 100%; |
|
1901 |
} |
|
5 | 1902 |
} |
1903 |
||
1904 |
@media only screen and (max-width: 768px) { |
|
1905 |
.form-field input[type="text"], |
|
1906 |
.form-field input[type="email"], |
|
1907 |
.form-field input[type="password"], |
|
1908 |
.form-field select, |
|
1909 |
.form-field textarea { |
|
1910 |
width: 99%; |
|
1911 |
} |
|
1912 |
||
1913 |
.form-wrap .form-field { |
|
9 | 1914 |
padding: 0; |
5 | 1915 |
} |
1916 |
} |
|
1917 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1918 |
@media only screen and (max-height: 480px), screen and (max-width: 450px) { |
9 | 1919 |
/* Request Credentials / File Editor Warning */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1920 |
.request-filesystem-credentials-dialog .notification-dialog, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1921 |
.file-editor-warning .notification-dialog { |
5 | 1922 |
width: 100%; |
1923 |
height: 100%; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1924 |
max-height: 100%; |
5 | 1925 |
position: fixed; |
1926 |
top: 0; |
|
1927 |
margin: 0; |
|
1928 |
left: 0; |
|
1929 |
} |
|
1930 |
} |
|
1931 |
||
1932 |
/* Smartphone */ |
|
1933 |
@media screen and (max-width: 600px) { |
|
1934 |
/* Color Picker Options */ |
|
1935 |
.color-option { |
|
1936 |
width: 49%; |
|
1937 |
} |
|
1938 |
} |
|
1939 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1940 |
@media only screen and (max-width: 320px) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1941 |
.options-general-php .date-time-text.date-time-custom-text { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1942 |
min-width: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1943 |
margin-right: 0.5em; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1944 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1945 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1946 |
|
9 | 1947 |
@keyframes rotation { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1948 |
0% { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1949 |
transform: rotate(0deg); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1950 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1951 |
100% { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1952 |
transform: rotate(359deg); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1953 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1954 |
} |