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