author | ymh <ymh.work@gmail.com> |
Thu, 29 Sep 2022 08:06:27 +0200 | |
changeset 20 | 7b1b88e27a20 |
parent 19 | 3d72ae0968f4 |
child 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
5 | 1 |
#adminmenuback, |
2 |
#adminmenuwrap, |
|
3 |
#adminmenu, |
|
4 |
#adminmenu .wp-submenu { |
|
5 |
width: 160px; |
|
18 | 6 |
background-color: #1d2327; |
5 | 7 |
} |
8 |
||
9 |
#adminmenuback { |
|
10 |
position: fixed; |
|
11 |
top: 0; |
|
12 |
bottom: -120px; |
|
13 |
z-index: 1; /* positive z-index to avoid elastic scrolling woes in Safari */ |
|
14 |
} |
|
15 |
||
16 | 16 |
.php-error #adminmenuback { |
17 |
position: absolute; |
|
18 |
} |
|
19 |
||
20 |
.php-error #adminmenuback, |
|
21 |
.php-error #adminmenuwrap { |
|
22 |
margin-top: 2em; |
|
23 |
} |
|
24 |
||
5 | 25 |
#adminmenu { |
26 |
clear: left; |
|
27 |
margin: 12px 0; |
|
28 |
padding: 0; |
|
29 |
list-style: none; |
|
30 |
} |
|
31 |
||
32 |
.folded #adminmenuback, |
|
33 |
.folded #adminmenuwrap, |
|
34 |
.folded #adminmenu, |
|
35 |
.folded #adminmenu li.menu-top { |
|
36 |
width: 36px; |
|
37 |
} |
|
38 |
||
39 |
.icon16 { |
|
40 |
height: 18px; |
|
41 |
width: 18px; |
|
19 | 42 |
padding: 6px; |
5 | 43 |
margin: -6px 0 0 -8px; |
44 |
float: left; |
|
45 |
} |
|
46 |
||
47 |
/* New Menu icons */ |
|
48 |
||
49 |
.icon16:before { |
|
18 | 50 |
color: #8c8f94; /* same as new icons */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
51 |
font: normal 20px/1 dashicons; |
18 | 52 |
speak: never; |
5 | 53 |
padding: 6px 0; |
54 |
height: 34px; |
|
55 |
width: 20px; |
|
56 |
display: inline-block; |
|
57 |
-webkit-font-smoothing: antialiased; |
|
58 |
-moz-osx-font-smoothing: grayscale; |
|
59 |
transition: all .1s ease-in-out; |
|
60 |
} |
|
61 |
||
62 |
.icon16.icon-dashboard:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
63 |
content: "\f226"; |
5 | 64 |
} |
65 |
||
66 |
.icon16.icon-post:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
67 |
content: "\f109"; |
5 | 68 |
} |
69 |
||
70 |
.icon16.icon-media:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
71 |
content: "\f104"; |
5 | 72 |
} |
73 |
||
74 |
.icon16.icon-links:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
75 |
content: "\f103"; |
5 | 76 |
} |
77 |
||
78 |
.icon16.icon-page:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
79 |
content: "\f105"; |
5 | 80 |
} |
81 |
||
82 |
.icon16.icon-comments:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
83 |
content: "\f101"; |
5 | 84 |
margin-top: 1px; |
85 |
} |
|
86 |
||
87 |
.icon16.icon-appearance:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
88 |
content: "\f100"; |
5 | 89 |
} |
90 |
||
91 |
.icon16.icon-plugins:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
92 |
content: "\f106"; |
5 | 93 |
} |
94 |
||
95 |
.icon16.icon-users:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
96 |
content: "\f110"; |
5 | 97 |
} |
98 |
||
99 |
.icon16.icon-tools:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
content: "\f107"; |
5 | 101 |
} |
102 |
||
103 |
.icon16.icon-settings:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
104 |
content: "\f108"; |
5 | 105 |
} |
106 |
||
107 |
.icon16.icon-site:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
108 |
content: "\f541"; |
5 | 109 |
} |
110 |
||
111 |
.icon16.icon-generic:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
112 |
content: "\f111"; |
5 | 113 |
} |
114 |
||
115 |
/* hide background-image for icons above */ |
|
116 |
.icon16.icon-dashboard, |
|
117 |
.menu-icon-dashboard div.wp-menu-image, |
|
118 |
.icon16.icon-post, |
|
119 |
.menu-icon-post div.wp-menu-image, |
|
120 |
.icon16.icon-media, |
|
121 |
.menu-icon-media div.wp-menu-image, |
|
122 |
.icon16.icon-links, |
|
123 |
.menu-icon-links div.wp-menu-image, |
|
124 |
.icon16.icon-page, |
|
125 |
.menu-icon-page div.wp-menu-image, |
|
126 |
.icon16.icon-comments, |
|
127 |
.menu-icon-comments div.wp-menu-image, |
|
128 |
.icon16.icon-appearance, |
|
129 |
.menu-icon-appearance div.wp-menu-image, |
|
130 |
.icon16.icon-plugins, |
|
131 |
.menu-icon-plugins div.wp-menu-image, |
|
132 |
.icon16.icon-users, |
|
133 |
.menu-icon-users div.wp-menu-image, |
|
134 |
.icon16.icon-tools, |
|
135 |
.menu-icon-tools div.wp-menu-image, |
|
136 |
.icon16.icon-settings, |
|
137 |
.menu-icon-settings div.wp-menu-image, |
|
138 |
.icon16.icon-site, |
|
139 |
.menu-icon-site div.wp-menu-image, |
|
140 |
.icon16.icon-generic, |
|
141 |
.menu-icon-generic div.wp-menu-image { |
|
142 |
background-image: none !important; |
|
143 |
} |
|
144 |
||
145 |
/*------------------------------------------------------------------------------ |
|
146 |
7.0 - Main Navigation (Left Menu) |
|
147 |
------------------------------------------------------------------------------*/ |
|
148 |
||
149 |
#adminmenuwrap { |
|
150 |
position: relative; |
|
151 |
float: left; |
|
152 |
z-index: 9990; |
|
153 |
} |
|
154 |
||
155 |
/* side admin menu */ |
|
156 |
#adminmenu * { |
|
157 |
-webkit-user-select: none; |
|
158 |
user-select: none; |
|
159 |
} |
|
160 |
||
161 |
#adminmenu li { |
|
162 |
margin: 0; |
|
163 |
padding: 0; |
|
164 |
} |
|
165 |
||
166 |
#adminmenu a { |
|
167 |
display: block; |
|
9 | 168 |
line-height: 1.3; |
5 | 169 |
padding: 2px 5px; |
18 | 170 |
color: #f0f0f1; |
5 | 171 |
} |
172 |
||
173 |
#adminmenu .wp-submenu a { |
|
18 | 174 |
color: #c3c4c7; |
175 |
color: rgba(240, 246, 252, 0.7); |
|
16 | 176 |
font-size: 13px; |
177 |
line-height: 1.4; |
|
178 |
margin: 0; |
|
179 |
padding: 5px 0; |
|
5 | 180 |
} |
181 |
||
182 |
#adminmenu .wp-submenu a:hover, |
|
183 |
#adminmenu .wp-submenu a:focus { |
|
184 |
background: none; |
|
185 |
} |
|
186 |
||
187 |
#adminmenu a:hover, |
|
188 |
#adminmenu li.menu-top > a:focus, |
|
189 |
#adminmenu .wp-submenu a:hover, |
|
190 |
#adminmenu .wp-submenu a:focus { |
|
18 | 191 |
color: #72aee6; |
192 |
} |
|
193 |
||
194 |
#adminmenu a:hover, |
|
195 |
#adminmenu a:focus, |
|
196 |
.folded #adminmenu .wp-submenu-head:hover { |
|
197 |
box-shadow: inset 4px 0 0 0 currentColor; |
|
198 |
transition: box-shadow .1s linear; |
|
5 | 199 |
} |
200 |
||
201 |
#adminmenu li.menu-top { |
|
202 |
border: none; |
|
203 |
min-height: 34px; |
|
204 |
position: relative; |
|
205 |
} |
|
206 |
||
207 |
#adminmenu .wp-submenu { |
|
208 |
list-style: none; |
|
209 |
position: absolute; |
|
210 |
top: -1000em; |
|
211 |
left: 160px; |
|
212 |
overflow: visible; |
|
213 |
word-wrap: break-word; |
|
214 |
padding: 7px 0 8px; |
|
215 |
z-index: 9999; |
|
18 | 216 |
background-color: #2c3338; |
9 | 217 |
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); |
5 | 218 |
} |
219 |
||
220 |
.js #adminmenu .sub-open, |
|
221 |
.js #adminmenu .opensub .wp-submenu, |
|
222 |
#adminmenu a.menu-top:focus + .wp-submenu, |
|
223 |
.no-js li.wp-has-submenu:hover .wp-submenu { |
|
224 |
top: -1px; |
|
225 |
} |
|
226 |
||
18 | 227 |
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu { |
228 |
top: 0; |
|
229 |
} |
|
230 |
||
5 | 231 |
#adminmenu .wp-has-current-submenu .wp-submenu, |
232 |
.no-js li.wp-has-current-submenu:hover .wp-submenu, |
|
233 |
#adminmenu .wp-has-current-submenu .wp-submenu.sub-open, |
|
234 |
#adminmenu .wp-has-current-submenu.opensub .wp-submenu { |
|
235 |
position: relative; |
|
236 |
z-index: 3; |
|
237 |
top: auto; |
|
238 |
left: auto; |
|
239 |
right: auto; |
|
240 |
bottom: auto; |
|
241 |
border: 0 none; |
|
242 |
margin-top: 0; |
|
243 |
box-shadow: none; |
|
18 | 244 |
} |
245 |
||
246 |
.folded #adminmenu .wp-has-current-submenu .wp-submenu { |
|
247 |
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); |
|
5 | 248 |
} |
249 |
||
250 |
/* ensure that wp-submenu's box shadow doesn't appear on top of the focused menu item's background. */ |
|
251 |
#adminmenu li.menu-top:hover, |
|
252 |
#adminmenu li.opensub > a.menu-top, |
|
253 |
#adminmenu li > a.menu-top:focus { |
|
254 |
position: relative; |
|
18 | 255 |
background-color: #1d2327; |
256 |
color: #72aee6; |
|
5 | 257 |
} |
258 |
||
259 |
.folded #adminmenu li.menu-top:hover, |
|
260 |
.folded #adminmenu li.opensub > a.menu-top, |
|
261 |
.folded #adminmenu li > a.menu-top:focus { |
|
262 |
z-index: 10000; |
|
263 |
} |
|
264 |
||
265 |
#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, |
|
266 |
#adminmenu li.current a.menu-top, |
|
267 |
#adminmenu .wp-menu-arrow, |
|
268 |
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head, |
|
269 |
#adminmenu .wp-menu-arrow div { |
|
18 | 270 |
background: #2271b1; |
5 | 271 |
color: #fff; |
272 |
} |
|
273 |
||
274 |
.folded #adminmenu .wp-submenu.sub-open, |
|
275 |
.folded #adminmenu .opensub .wp-submenu, |
|
276 |
.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, |
|
277 |
.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu, |
|
278 |
.folded #adminmenu a.menu-top:focus + .wp-submenu, |
|
279 |
.folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
280 |
.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu { |
5 | 281 |
top: 0; |
282 |
left: 36px; |
|
283 |
} |
|
284 |
||
285 |
.folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, |
|
286 |
.folded #adminmenu .wp-has-current-submenu .wp-submenu { |
|
287 |
position: absolute; |
|
288 |
top: -1000em; |
|
289 |
} |
|
290 |
||
291 |
#adminmenu .wp-not-current-submenu .wp-submenu, |
|
292 |
.folded #adminmenu .wp-has-current-submenu .wp-submenu { |
|
293 |
min-width: 160px; |
|
294 |
width: auto; |
|
18 | 295 |
border-left: 5px solid transparent; |
5 | 296 |
} |
297 |
||
298 |
#adminmenu .wp-submenu li.current, |
|
299 |
#adminmenu .wp-submenu li.current a, |
|
300 |
#adminmenu .opensub .wp-submenu li.current a, |
|
301 |
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, |
|
302 |
#adminmenu .wp-submenu li.current a:hover, |
|
303 |
#adminmenu .wp-submenu li.current a:focus { |
|
304 |
color: #fff; |
|
305 |
} |
|
306 |
||
307 |
#adminmenu .wp-not-current-submenu li > a, |
|
308 |
.folded #adminmenu .wp-has-current-submenu li > a { |
|
309 |
padding-right: 16px; |
|
310 |
padding-left: 14px; |
|
9 | 311 |
/* Exclude from the transition the outline for Windows High Contrast mode */ |
312 |
transition: all .1s ease-in-out, outline 0s; |
|
5 | 313 |
} |
314 |
||
315 |
#adminmenu .wp-has-current-submenu ul > li > a, |
|
316 |
.folded #adminmenu li.menu-top .wp-submenu > li > a { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
317 |
padding: 5px 12px; |
5 | 318 |
} |
319 |
||
320 |
#adminmenu a.menu-top, |
|
321 |
#adminmenu .wp-submenu-head { |
|
322 |
font-size: 14px; |
|
323 |
font-weight: 400; |
|
9 | 324 |
line-height: 1.3; |
5 | 325 |
padding: 0; |
326 |
} |
|
327 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
328 |
#adminmenu .wp-submenu-head { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
329 |
display: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
330 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
331 |
|
5 | 332 |
.folded #adminmenu .wp-menu-name { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
333 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
334 |
left: -999px; |
5 | 335 |
} |
336 |
||
337 |
.folded #adminmenu .wp-submenu-head { |
|
338 |
display: block; |
|
339 |
} |
|
340 |
||
341 |
#adminmenu .wp-submenu li { |
|
342 |
padding: 0; |
|
343 |
margin: 0; |
|
344 |
} |
|
345 |
||
346 |
#adminmenu .wp-menu-image img { |
|
19 | 347 |
padding: 9px 0 0; |
5 | 348 |
opacity: 0.6; |
349 |
filter: alpha(opacity=60); |
|
350 |
} |
|
351 |
||
352 |
#adminmenu div.wp-menu-name { |
|
18 | 353 |
padding: 8px 8px 8px 36px; |
354 |
overflow-wrap: break-word; |
|
355 |
word-wrap: break-word; |
|
356 |
-ms-word-break: break-all; |
|
357 |
word-break: break-word; |
|
358 |
-webkit-hyphens: auto; |
|
359 |
hyphens: auto; |
|
5 | 360 |
} |
361 |
||
362 |
#adminmenu div.wp-menu-image { |
|
363 |
float: left; |
|
364 |
width: 36px; |
|
365 |
height: 34px; |
|
366 |
margin: 0; |
|
367 |
text-align: center; |
|
368 |
} |
|
369 |
||
370 |
#adminmenu div.wp-menu-image.svg { |
|
371 |
background-repeat: no-repeat; |
|
372 |
background-position: center; |
|
373 |
background-size: 20px auto; |
|
374 |
} |
|
375 |
||
376 |
div.wp-menu-image:before { |
|
18 | 377 |
color: #a7aaad; |
378 |
color: rgba(240, 246, 252, 0.6); |
|
5 | 379 |
padding: 7px 0; |
380 |
transition: all .1s ease-in-out; |
|
381 |
} |
|
382 |
||
383 |
#adminmenu div.wp-menu-image:before { |
|
18 | 384 |
color: #a7aaad; |
385 |
color: rgba(240, 246, 252, 0.6); |
|
5 | 386 |
} |
387 |
||
388 |
#adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before, |
|
389 |
#adminmenu .wp-has-current-submenu div.wp-menu-image:before, |
|
390 |
#adminmenu .current div.wp-menu-image:before, |
|
391 |
#adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, |
|
392 |
#adminmenu a.current:hover div.wp-menu-image:before, |
|
393 |
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, |
|
394 |
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before { |
|
395 |
color: #fff; |
|
396 |
} |
|
397 |
||
398 |
#adminmenu li:hover div.wp-menu-image:before, |
|
399 |
#adminmenu li a:focus div.wp-menu-image:before, |
|
400 |
#adminmenu li.opensub div.wp-menu-image:before { |
|
18 | 401 |
color: #72aee6; |
5 | 402 |
} |
403 |
||
404 |
.folded #adminmenu div.wp-menu-image { |
|
405 |
width: 35px; |
|
406 |
height: 30px; |
|
407 |
position: absolute; |
|
408 |
z-index: 25; |
|
409 |
} |
|
410 |
||
411 |
.folded #adminmenu a.menu-top { |
|
412 |
height: 34px; |
|
413 |
} |
|
414 |
||
415 |
/* Sticky admin menu */ |
|
416 |
.sticky-menu #adminmenuwrap { |
|
417 |
position: fixed; |
|
418 |
} |
|
419 |
||
420 |
/* A new arrow */ |
|
421 |
||
422 |
.wp-menu-arrow { |
|
423 |
display: none !important; |
|
424 |
} |
|
425 |
||
426 |
ul#adminmenu a.wp-has-current-submenu { |
|
427 |
position: relative; |
|
428 |
} |
|
429 |
||
430 |
ul#adminmenu a.wp-has-current-submenu:after, |
|
431 |
ul#adminmenu > li.current > a.current:after { |
|
432 |
right: 0; |
|
433 |
border: solid 8px transparent; |
|
434 |
content: " "; |
|
435 |
height: 0; |
|
436 |
width: 0; |
|
437 |
position: absolute; |
|
438 |
pointer-events: none; |
|
18 | 439 |
border-right-color: #f0f0f1; |
5 | 440 |
top: 50%; |
441 |
margin-top: -8px; |
|
442 |
} |
|
443 |
||
18 | 444 |
.folded ul#adminmenu li:hover a.wp-has-current-submenu:after, |
445 |
.folded ul#adminmenu li.wp-has-current-submenu:focus-within a.wp-has-current-submenu:after { |
|
5 | 446 |
display: none; |
447 |
} |
|
448 |
||
449 |
.folded ul#adminmenu a.wp-has-current-submenu:after, |
|
450 |
.folded ul#adminmenu > li a.current:after { |
|
451 |
border-width: 4px; |
|
452 |
margin-top: -4px; |
|
453 |
} |
|
454 |
||
455 |
/* flyout menu arrow */ |
|
18 | 456 |
#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, |
457 |
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { |
|
5 | 458 |
right: 0; |
18 | 459 |
border: 8px solid transparent; |
5 | 460 |
content: " "; |
461 |
height: 0; |
|
462 |
width: 0; |
|
463 |
position: absolute; |
|
464 |
pointer-events: none; |
|
465 |
top: 10px; |
|
466 |
z-index: 10000; |
|
467 |
} |
|
468 |
||
18 | 469 |
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, |
470 |
.folded ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { |
|
5 | 471 |
border-width: 4px; |
472 |
margin-top: -4px; |
|
473 |
top: 18px; |
|
474 |
} |
|
475 |
||
18 | 476 |
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, |
477 |
#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { |
|
478 |
border-right-color: #2c3338; |
|
5 | 479 |
} |
480 |
||
481 |
#adminmenu li.menu-top:hover .wp-menu-image img, |
|
482 |
#adminmenu li.wp-has-current-submenu .wp-menu-image img { |
|
483 |
opacity: 1; |
|
484 |
filter: alpha(opacity=100); |
|
485 |
} |
|
486 |
||
487 |
#adminmenu li.wp-menu-separator { |
|
488 |
height: 5px; |
|
489 |
padding: 0; |
|
19 | 490 |
margin: 0 0 6px; |
5 | 491 |
cursor: inherit; |
492 |
} |
|
493 |
||
494 |
/* @todo: is this even needed given that it's nested beneath the above li.wp-menu-separator? */ |
|
495 |
#adminmenu div.separator { |
|
496 |
height: 2px; |
|
497 |
padding: 0; |
|
498 |
} |
|
499 |
||
500 |
#adminmenu .wp-submenu .wp-submenu-head { |
|
501 |
color: #fff; |
|
502 |
font-weight: 400; |
|
503 |
font-size: 14px; |
|
18 | 504 |
padding: 5px 4px 5px 11px; |
19 | 505 |
margin: -7px 0 4px -5px; |
18 | 506 |
border-width: 3px 0 3px 5px; |
507 |
border-style: solid; |
|
508 |
border-color: transparent; |
|
5 | 509 |
} |
510 |
||
511 |
#adminmenu li.current, |
|
512 |
.folded #adminmenu li.wp-menu-open { |
|
513 |
border: 0 none; |
|
514 |
} |
|
515 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
516 |
/* @todo: consider to use a single rule for these counters and the list table comments counters. */ |
5 | 517 |
#adminmenu .awaiting-mod, |
518 |
#adminmenu .update-plugins { |
|
519 |
display: inline-block; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
520 |
vertical-align: top; |
9 | 521 |
box-sizing: border-box; |
522 |
margin: 1px 0 -1px 2px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
523 |
padding: 0 5px; |
9 | 524 |
min-width: 18px; |
525 |
height: 18px; |
|
526 |
border-radius: 9px; |
|
18 | 527 |
background-color: #d63638; |
5 | 528 |
color: #fff; |
9 | 529 |
font-size: 11px; |
530 |
line-height: 1.6; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
531 |
text-align: center; |
5 | 532 |
z-index: 26; |
533 |
} |
|
534 |
||
535 |
#adminmenu li.current a .awaiting-mod, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
536 |
#adminmenu li a.wp-has-current-submenu .update-plugins { |
18 | 537 |
background-color: #d63638; |
5 | 538 |
color: #fff; |
539 |
} |
|
540 |
||
541 |
#adminmenu li span.count-0 { |
|
542 |
display: none; |
|
543 |
} |
|
544 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
545 |
#collapse-button { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
546 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
547 |
width: 100%; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
548 |
height: 34px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
549 |
margin: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
550 |
border: none; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
551 |
padding: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
552 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
553 |
overflow: visible; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
554 |
background: none; |
18 | 555 |
color: #a7aaad; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
556 |
cursor: pointer; |
9 | 557 |
} |
558 |
||
559 |
#collapse-button:hover { |
|
18 | 560 |
color: #72aee6; |
5 | 561 |
} |
562 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
563 |
#collapse-button:focus { |
18 | 564 |
color: #72aee6; |
9 | 565 |
/* Only visible in Windows High Contrast mode */ |
566 |
outline: 1px solid transparent; |
|
567 |
outline-offset: -1px; |
|
5 | 568 |
} |
569 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
570 |
#collapse-button .collapse-button-icon, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
571 |
#collapse-button .collapse-button-label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
572 |
/* absolutely positioned to avoid 1px shift in IE when button is pressed */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
573 |
display: block; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
574 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
575 |
top: 0; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
576 |
left: 0; |
9 | 577 |
} |
578 |
||
579 |
#collapse-button .collapse-button-label { |
|
580 |
top: 8px; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
581 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
582 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
583 |
#collapse-button .collapse-button-icon { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
584 |
width: 36px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
585 |
height: 34px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
586 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
587 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
588 |
#collapse-button .collapse-button-label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
589 |
padding: 0 0 0 36px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
590 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
591 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
592 |
.folded #collapse-button .collapse-button-label { |
5 | 593 |
display: none; |
594 |
} |
|
595 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
596 |
#collapse-button .collapse-button-icon:after { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
597 |
content: "\f148"; |
5 | 598 |
display: block; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
599 |
position: relative; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
600 |
top: 7px; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
601 |
text-align: center; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
602 |
font: normal 20px/1 dashicons !important; |
18 | 603 |
speak: never; |
5 | 604 |
-webkit-font-smoothing: antialiased; |
605 |
-moz-osx-font-smoothing: grayscale; |
|
606 |
} |
|
607 |
||
608 |
/* rtl:ignore */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
609 |
.folded #collapse-button .collapse-button-icon:after, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
610 |
.rtl #collapse-button .collapse-button-icon:after { |
5 | 611 |
transform: rotate(180deg); |
612 |
} |
|
613 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
614 |
.rtl.folded #collapse-button .collapse-button-icon:after { |
5 | 615 |
transform: none; |
616 |
} |
|
617 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
618 |
#collapse-button .collapse-button-icon:after, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
619 |
#collapse-button .collapse-button-label { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
620 |
transition: all .1s ease-in-out; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
621 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
622 |
|
5 | 623 |
/** |
624 |
* Toolbar menu toggle |
|
625 |
*/ |
|
626 |
li#wp-admin-bar-menu-toggle { |
|
627 |
display: none; |
|
628 |
} |
|
629 |
||
630 |
/* Hide-if-customize for items we can't add classes to */ |
|
631 |
.customize-support #menu-appearance a[href="themes.php?page=custom-header"], |
|
632 |
.customize-support #menu-appearance a[href="themes.php?page=custom-background"] { |
|
633 |
display: none; |
|
634 |
} |
|
635 |
||
636 |
/* Auto-folding of the admin menu */ |
|
637 |
@media only screen and (max-width: 960px) { |
|
638 |
.auto-fold #wpcontent, |
|
639 |
.auto-fold #wpfooter { |
|
640 |
margin-left: 36px; |
|
641 |
} |
|
642 |
||
643 |
.auto-fold #adminmenuback, |
|
644 |
.auto-fold #adminmenuwrap, |
|
645 |
.auto-fold #adminmenu, |
|
646 |
.auto-fold #adminmenu li.menu-top { |
|
647 |
width: 36px; |
|
648 |
} |
|
649 |
||
650 |
.auto-fold #adminmenu .wp-submenu.sub-open, |
|
651 |
.auto-fold #adminmenu .opensub .wp-submenu, |
|
652 |
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open, |
|
653 |
.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu, |
|
654 |
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
655 |
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { |
19 | 656 |
top: 0; |
5 | 657 |
left: 36px; |
658 |
} |
|
659 |
||
660 |
.auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, |
|
661 |
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { |
|
662 |
position: absolute; |
|
663 |
top: -1000em; |
|
664 |
margin-right: -1px; |
|
665 |
padding: 7px 0 8px; |
|
666 |
z-index: 9999; |
|
667 |
} |
|
668 |
||
669 |
.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu { |
|
670 |
min-width: 150px; |
|
671 |
width: auto; |
|
672 |
} |
|
673 |
||
674 |
.auto-fold #adminmenu .wp-has-current-submenu li > a { |
|
675 |
padding-right: 16px; |
|
676 |
padding-left: 14px; |
|
677 |
} |
|
678 |
||
679 |
||
680 |
.auto-fold #adminmenu li.menu-top .wp-submenu > li > a { |
|
681 |
padding-left: 12px; |
|
682 |
} |
|
683 |
||
684 |
.auto-fold #adminmenu .wp-menu-name { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
685 |
position: absolute; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
686 |
left: -999px; |
5 | 687 |
} |
688 |
||
689 |
.auto-fold #adminmenu .wp-submenu-head { |
|
690 |
display: block; |
|
691 |
} |
|
692 |
||
693 |
.auto-fold #adminmenu div.wp-menu-image { |
|
694 |
height: 30px; |
|
695 |
width: 34px; |
|
696 |
position: absolute; |
|
697 |
z-index: 25; |
|
698 |
} |
|
699 |
||
700 |
.auto-fold #adminmenu a.menu-top { |
|
18 | 701 |
min-height: 34px; |
5 | 702 |
} |
703 |
||
704 |
.auto-fold #adminmenu li.wp-menu-open { |
|
705 |
border: 0 none; |
|
706 |
} |
|
707 |
||
708 |
.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last { |
|
709 |
margin-bottom: 0; |
|
710 |
} |
|
711 |
||
18 | 712 |
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after, |
713 |
.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after { |
|
5 | 714 |
display: none; |
715 |
} |
|
716 |
||
18 | 717 |
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, |
718 |
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { |
|
5 | 719 |
border-width: 4px; |
720 |
margin-top: -4px; |
|
721 |
top: 16px; |
|
722 |
} |
|
723 |
||
724 |
.auto-fold ul#adminmenu a.wp-has-current-submenu:after, |
|
725 |
.auto-fold ul#adminmenu > li a.current:after { |
|
726 |
border-width: 4px; |
|
727 |
margin-top: -4px; |
|
728 |
} |
|
729 |
||
730 |
.auto-fold #adminmenu li.menu-top:hover, |
|
731 |
.auto-fold #adminmenu li.opensub > a.menu-top, |
|
732 |
.auto-fold #adminmenu li > a.menu-top:focus { |
|
733 |
z-index: 10000; |
|
734 |
} |
|
735 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
736 |
.auto-fold #collapse-menu .collapse-button-label { |
5 | 737 |
display: none; |
738 |
} |
|
739 |
||
740 |
/* rtl:ignore */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
741 |
.auto-fold #collapse-button .collapse-button-icon:after { |
5 | 742 |
transform: rotate(180deg); |
743 |
} |
|
744 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
745 |
.rtl.auto-fold #collapse-button .collapse-button-icon:after { |
5 | 746 |
transform: none; |
747 |
} |
|
748 |
||
749 |
} |
|
750 |
||
9 | 751 |
@media screen and (max-width: 782px) { |
5 | 752 |
.auto-fold #wpcontent { |
753 |
position: relative; |
|
754 |
margin-left: 0; |
|
755 |
padding-left: 10px; |
|
756 |
} |
|
757 |
||
758 |
.sticky-menu #adminmenuwrap { |
|
759 |
position: relative; |
|
760 |
z-index: auto; |
|
761 |
top: 0; |
|
762 |
} |
|
763 |
||
764 |
/* Sidebar Adjustments */ |
|
765 |
.auto-fold #adminmenu, |
|
766 |
.auto-fold #adminmenuback, |
|
767 |
.auto-fold #adminmenuwrap { |
|
768 |
position: absolute; |
|
769 |
width: 190px; |
|
770 |
z-index: 100; |
|
771 |
} |
|
772 |
||
16 | 773 |
.auto-fold #adminmenuback { |
774 |
position: fixed; |
|
775 |
} |
|
776 |
||
5 | 777 |
.auto-fold #adminmenuback, |
778 |
.auto-fold #adminmenuwrap { |
|
779 |
display: none; |
|
780 |
} |
|
781 |
||
782 |
.auto-fold .wp-responsive-open #adminmenuback, |
|
783 |
.auto-fold .wp-responsive-open #adminmenuwrap { |
|
784 |
display: block; |
|
785 |
} |
|
786 |
||
787 |
.auto-fold #adminmenu li.menu-top { |
|
788 |
width: 100%; |
|
789 |
} |
|
790 |
||
791 |
/* Resize the admin menu items to a comfortable touch size */ |
|
792 |
.auto-fold #adminmenu li a { |
|
793 |
font-size: 16px; |
|
794 |
padding: 5px; |
|
795 |
} |
|
796 |
||
797 |
.auto-fold #adminmenu li.menu-top .wp-submenu > li > a { |
|
798 |
padding: 10px 10px 10px 20px; |
|
799 |
} |
|
800 |
||
801 |
/* Restore the menu names */ |
|
802 |
.auto-fold #adminmenu .wp-menu-name { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
803 |
position: static; |
5 | 804 |
} |
805 |
||
806 |
/* Switch the arrow side */ |
|
807 |
.auto-fold ul#adminmenu a.wp-has-current-submenu:after, |
|
808 |
.auto-fold ul#adminmenu > li.current > a.current:after { |
|
809 |
border-width: 8px; |
|
810 |
margin-top: -8px; |
|
811 |
} |
|
812 |
||
18 | 813 |
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:hover:after, |
814 |
.auto-fold ul#adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { |
|
5 | 815 |
display: none; |
816 |
} |
|
817 |
||
818 |
/* Make the submenus appear correctly when tapped. */ |
|
819 |
#adminmenu .wp-submenu { |
|
820 |
position: relative; |
|
821 |
display: none; |
|
822 |
} |
|
823 |
||
824 |
.auto-fold #adminmenu .selected .wp-submenu, |
|
825 |
.auto-fold #adminmenu .wp-menu-open .wp-submenu { |
|
826 |
position: relative; |
|
827 |
display: block; |
|
828 |
top: 0; |
|
829 |
left: -1px; |
|
830 |
box-shadow: none; |
|
831 |
} |
|
832 |
||
833 |
.auto-fold #adminmenu .selected .wp-submenu:after, |
|
834 |
.auto-fold #adminmenu .wp-menu-open .wp-submenu:after { |
|
835 |
display: none; |
|
836 |
} |
|
837 |
||
838 |
.auto-fold #adminmenu .opensub .wp-submenu { |
|
839 |
display: none; |
|
840 |
} |
|
841 |
||
842 |
.auto-fold #adminmenu .selected .wp-submenu { |
|
843 |
display: block; |
|
844 |
} |
|
845 |
||
18 | 846 |
.auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after, |
847 |
.auto-fold ul#adminmenu li:focus-within a.wp-has-current-submenu:after { |
|
5 | 848 |
display: block; |
849 |
} |
|
850 |
||
851 |
.auto-fold #adminmenu a.menu-top:focus + .wp-submenu, |
|
852 |
.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu { |
|
853 |
position: relative; |
|
854 |
left: -1px; |
|
855 |
right: 0; |
|
856 |
top: 0; |
|
857 |
} |
|
858 |
||
18 | 859 |
#adminmenu .wp-not-current-submenu .wp-submenu, |
860 |
.folded #adminmenu .wp-has-current-submenu .wp-submenu { |
|
861 |
border-left: none; |
|
862 |
} |
|
863 |
||
5 | 864 |
/* Remove submenu headers and adjust sub meu*/ |
865 |
#adminmenu .wp-submenu .wp-submenu-head { |
|
866 |
display: none; |
|
867 |
} |
|
868 |
||
869 |
/* Toolbar menu toggle */ |
|
870 |
#wp-responsive-toggle { |
|
871 |
position: fixed; |
|
872 |
top: 5px; |
|
873 |
left: 4px; |
|
874 |
padding-right: 10px; |
|
875 |
z-index: 99999; |
|
876 |
border: none; |
|
877 |
box-sizing: border-box; |
|
878 |
} |
|
879 |
||
880 |
#wpadminbar #wp-admin-bar-menu-toggle a { |
|
881 |
display: block; |
|
882 |
padding: 0; |
|
883 |
overflow: hidden; |
|
884 |
outline: none; |
|
885 |
text-decoration: none; |
|
886 |
border: 1px solid transparent; |
|
887 |
background: none; |
|
888 |
height: 44px; |
|
889 |
margin-left: -1px; |
|
890 |
} |
|
891 |
||
892 |
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { |
|
18 | 893 |
background: #2c3338; |
5 | 894 |
} |
895 |
||
896 |
li#wp-admin-bar-menu-toggle { |
|
897 |
display: block; |
|
898 |
} |
|
899 |
||
900 |
#wpadminbar #wp-admin-bar-menu-toggle a:hover { |
|
901 |
border: 1px solid transparent; |
|
902 |
} |
|
903 |
||
904 |
#wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
905 |
content: "\f228"; |
5 | 906 |
display: inline-block; |
907 |
float: left; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
908 |
font: normal 40px/45px dashicons; |
5 | 909 |
vertical-align: middle; |
910 |
outline: none; |
|
911 |
margin: 0; |
|
912 |
-webkit-font-smoothing: antialiased; |
|
913 |
-moz-osx-font-smoothing: grayscale; |
|
914 |
height: 44px; |
|
915 |
width: 50px; |
|
916 |
padding: 0; |
|
917 |
border: none; |
|
918 |
text-align: center; |
|
919 |
text-decoration: none; |
|
920 |
box-sizing: border-box; |
|
921 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
922 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
923 |
.wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { |
18 | 924 |
color: #72aee6; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
925 |
} |
5 | 926 |
} |
927 |
||
928 |
/* Smartphone */ |
|
929 |
@media screen and (max-width: 600px) { |
|
930 |
#adminmenuwrap, |
|
931 |
#adminmenuback { |
|
932 |
display: none; |
|
933 |
} |
|
934 |
||
935 |
.wp-responsive-open #adminmenuwrap, |
|
936 |
.wp-responsive-open #adminmenuback { |
|
937 |
display: block; |
|
938 |
} |
|
939 |
||
940 |
.auto-fold #adminmenu { |
|
941 |
top: 46px; |
|
942 |
} |
|
943 |
} |