admin-menu-rtl.css
3 years ago
admin-menu-rtl.min.css
3 years ago
admin-menu.css
3 years ago
admin-menu.js
3 years ago
admin-menu.min.css
3 years ago
class-admin-menu.php
3 years ago
class-atomic-admin-menu.php
3 years ago
class-base-admin-menu.php
3 years ago
class-dashboard-switcher-tracking.php
3 years ago
class-domain-only-admin-menu.php
3 years ago
class-jetpack-admin-menu.php
3 years ago
class-p2-admin-menu.php
4 years ago
class-wpcom-admin-menu.php
3 years ago
class-wpcom-email-subscription-checker.php
3 years ago
dashicon-set.php
4 years ago
globe-icon.svg
3 years ago
load.php
3 years ago
menu-mappings.php
3 years ago
admin-menu.css
584 lines
| 1 | #adminmenu { |
| 2 | margin: 0; |
| 3 | } |
| 4 | |
| 5 | /** |
| 6 | * Menu width |
| 7 | */ |
| 8 | #wpcontent, |
| 9 | #wpfooter { |
| 10 | margin-left: 272px; |
| 11 | } |
| 12 | |
| 13 | #adminmenuback, |
| 14 | #adminmenuwrap, |
| 15 | #adminmenu, |
| 16 | #adminmenu .wp-submenu { |
| 17 | width: 272px; |
| 18 | } |
| 19 | |
| 20 | #adminmenu .wp-submenu { |
| 21 | left: 272px; |
| 22 | } |
| 23 | |
| 24 | #adminmenu .wp-not-current-submenu .wp-submenu, |
| 25 | .folded #adminmenu .wp-has-current-submenu .wp-submenu { |
| 26 | min-width: 272px; |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Fixes Gutenberg in not fullscreen mode. |
| 31 | */ |
| 32 | @media (min-width: 783px) { |
| 33 | .interface-interface-skeleton, |
| 34 | .edit-post-layout .components-editor-notices__snackbar { |
| 35 | left: 272px; |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | @media (min-width: 961px) { |
| 40 | body:not(.folded).auto-fold .interface-interface-skeleton, |
| 41 | .auto-fold .edit-post-layout .components-editor-notices__snackbar, |
| 42 | .jp-dialogue-modern-full__container { |
| 43 | left: 272px; |
| 44 | } |
| 45 | |
| 46 | .global-notices { |
| 47 | max-width: calc( 100% - 48px - 272px ); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Jetpack logo |
| 53 | */ |
| 54 | #adminmenu [class*="activity-log"] .wp-menu-image img { |
| 55 | padding-top: 7px; |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Site Card |
| 60 | */ |
| 61 | #adminmenu .toplevel_page_site-card .wp-menu-name { |
| 62 | margin-left: 40px; /* icon width (32) + padding (8). */ |
| 63 | padding: 0; |
| 64 | } |
| 65 | |
| 66 | #adminmenu li.toplevel_page_site-card a { |
| 67 | padding: 10px 0 10px 8px; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Site Notices |
| 72 | */ |
| 73 | #adminmenu a.toplevel_page_site-notices:hover, |
| 74 | #adminmenu a.toplevel_page_site-notices:focus, |
| 75 | #adminmenu li.toplevel_page_site-notices:hover, |
| 76 | #adminmenu li.toplevel_page_site-notices:focus { |
| 77 | background-color: inherit !important; |
| 78 | color: inherit !important; |
| 79 | } |
| 80 | |
| 81 | #adminmenu li.toplevel_page_site-notices .wp-menu-image { |
| 82 | display: none; |
| 83 | } |
| 84 | |
| 85 | #adminmenu .toplevel_page_site-notices .wp-menu-image { |
| 86 | border-radius: 2px; |
| 87 | background-color: #fff; |
| 88 | } |
| 89 | |
| 90 | #adminmenu .toplevel_page_site-notices .wp-menu-image:before { |
| 91 | content: '\f534'; |
| 92 | font-family: 'dashicons'; |
| 93 | font-size: 20px; |
| 94 | line-height: 20px; |
| 95 | background-color: #a7aaad; |
| 96 | color: white; |
| 97 | border-radius: 50%; |
| 98 | margin: 5px; |
| 99 | padding: 0; |
| 100 | } |
| 101 | |
| 102 | #adminmenu .toplevel_page_site-notices:hover .wp-menu-image:before { |
| 103 | color: #fff; |
| 104 | } |
| 105 | |
| 106 | #adminmenu .toplevel_page_site-notices .upsell_banner { |
| 107 | display: flex; |
| 108 | flex-grow: 1; |
| 109 | flex-wrap: nowrap; |
| 110 | align-items: center; |
| 111 | justify-content: space-between; |
| 112 | position: relative; |
| 113 | width: 100%; |
| 114 | padding: 7px 12px; |
| 115 | left: -28px; |
| 116 | border-radius: 2px; |
| 117 | font-size: 12px; |
| 118 | line-height: 1.4; |
| 119 | hyphens: none; |
| 120 | } |
| 121 | |
| 122 | #adminmenu .toplevel_page_site-notices .upsell_banner .banner__info { |
| 123 | margin-right: 12px; |
| 124 | } |
| 125 | |
| 126 | #adminmenu .toplevel_page_site-notices .upsell_banner .button { |
| 127 | font-size: 12px; |
| 128 | line-height: 12px; |
| 129 | padding: 0 7px; |
| 130 | border: 0; |
| 131 | min-height: 26px; |
| 132 | } |
| 133 | |
| 134 | #adminmenu .toplevel_page_site-notices .upsell_banner svg.dismissible-card__close-icon { |
| 135 | height: 24px; |
| 136 | width: 24px; |
| 137 | margin-left: 10px; |
| 138 | } |
| 139 | |
| 140 | @media screen and (min-width: 782px) { |
| 141 | .folded #adminmenu .toplevel_page_site-notices .wp-menu-image { |
| 142 | display: block; |
| 143 | width: 30px; |
| 144 | } |
| 145 | |
| 146 | .folded #adminmenu .toplevel_page_site-notices { |
| 147 | height: 50px; |
| 148 | display: flex; |
| 149 | align-items: center; |
| 150 | justify-content: center; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | @media screen and (min-width: 782px) and (max-width: 960px){ |
| 155 | .auto-fold #adminmenu .toplevel_page_site-notices .wp-menu-image { |
| 156 | display: block; |
| 157 | width: 30px; |
| 158 | } |
| 159 | |
| 160 | .auto-fold #adminmenu .toplevel_page_site-notices { |
| 161 | height: 50px; |
| 162 | display: flex; |
| 163 | align-items: center; |
| 164 | justify-content: center; |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | /* Prevent box-shadow at the top of the sidebar */ |
| 169 | #adminmenu .site-switcher:hover, |
| 170 | #adminmenu .toplevel_page_site-card:hover, |
| 171 | #adminmenu .toplevel_page_site-notices:hover { |
| 172 | box-shadow: none; |
| 173 | } |
| 174 | |
| 175 | /** |
| 176 | * Site icon inline-styles for height and width are defined in set_site_icon_inline_styles |
| 177 | */ |
| 178 | #adminmenu .toplevel_page_site-card .wp-menu-image { |
| 179 | background-image: none; |
| 180 | background-position: center; |
| 181 | background-repeat: no-repeat; |
| 182 | background-size: 18px 18px; |
| 183 | transform: translateZ(0); |
| 184 | transition-property: background-image,background-color; |
| 185 | transition-duration: .2s; |
| 186 | } |
| 187 | |
| 188 | #adminmenu a.toplevel_page_site-card:hover, |
| 189 | #adminmenu li.toplevel_page_site-card:hover { |
| 190 | background-color: inherit; |
| 191 | } |
| 192 | |
| 193 | #adminmenu .toplevel_page_site-card img { |
| 194 | opacity: initial; |
| 195 | } |
| 196 | |
| 197 | #adminmenu .toplevel_page_site-card.has-site-icon img { |
| 198 | padding: 0; |
| 199 | } |
| 200 | |
| 201 | #adminmenu .toplevel_page_site-card:hover div.wp-menu-image, |
| 202 | #adminmenu .toplevel_page_site-card a:focus div.wp-menu-image { |
| 203 | background-image: url("data:image/svg+xml,%3Csvg class='gridicon gridicons-house' height='24' width='24' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg%3E%3Cpath fill='%23fff' d='M22 9L12 1 2 9v2h2v10h5v-4c0-1.657 1.343-3 3-3s3 1.343 3 3v4h5V11h2V9z'/%3E%3C/g%3E%3C/svg%3E%0A"); |
| 204 | } |
| 205 | |
| 206 | #adminmenu .toplevel_page_site-card:not(.has-site-icon) .wp-menu-image { |
| 207 | background-color: #c3c4c7; |
| 208 | height: 32px; |
| 209 | width: 32px; |
| 210 | } |
| 211 | |
| 212 | #adminmenu .toplevel_page_site-card:not(.has-site-icon) .wp-menu-image img { |
| 213 | width: 18px; |
| 214 | height: 18px; |
| 215 | padding: 7px; |
| 216 | } |
| 217 | |
| 218 | #adminmenu .toplevel_page_site-card:hover div.wp-menu-image img, |
| 219 | #adminmenu .toplevel_page_site-card a:focus div.wp-menu-image img { |
| 220 | display: none; |
| 221 | } |
| 222 | |
| 223 | .site__info .site__title { |
| 224 | display: block; |
| 225 | font-size: 14px; |
| 226 | font-weight: 400; |
| 227 | line-height: 1.3; |
| 228 | } |
| 229 | |
| 230 | .site__info .site__domain { |
| 231 | display: block; |
| 232 | max-width: 95%; |
| 233 | font-size: 12px; |
| 234 | line-height: 1.4; |
| 235 | margin-top: 2px; |
| 236 | } |
| 237 | |
| 238 | .site__info .site__title, |
| 239 | .site__info .site__domain { |
| 240 | overflow: hidden; |
| 241 | white-space: nowrap; |
| 242 | } |
| 243 | .site__info .site__title::after, |
| 244 | .site__info .site__domain::after { |
| 245 | content: ""; |
| 246 | display: block; |
| 247 | position: absolute; |
| 248 | -webkit-touch-callout: none; |
| 249 | -webkit-user-select: none; |
| 250 | user-select: none; |
| 251 | pointer-events: none; |
| 252 | top: 0; |
| 253 | bottom: 0; |
| 254 | right: 0; |
| 255 | left: auto; |
| 256 | width: 20%; |
| 257 | height: auto; |
| 258 | } |
| 259 | |
| 260 | .site__info > .site__badge { |
| 261 | font-size: 12px; |
| 262 | border-radius: 12px; |
| 263 | clear: both; |
| 264 | display: inline-block; |
| 265 | margin-top: 6px; |
| 266 | margin-right: 3px; |
| 267 | padding: 1px 10px; |
| 268 | } |
| 269 | |
| 270 | /** |
| 271 | * Inline text in a menu title |
| 272 | */ |
| 273 | .inline-text { |
| 274 | display: block !important; |
| 275 | position: absolute; |
| 276 | right: 20px; |
| 277 | top: 50%; |
| 278 | transform: translateY( -50% ); |
| 279 | opacity: 0.8; |
| 280 | } |
| 281 | |
| 282 | /** |
| 283 | * Stats |
| 284 | */ |
| 285 | [class*="toplevel_page_https://wordpress.com/stats/day"] .sidebar-unified__sparkline { |
| 286 | float: right; |
| 287 | margin-right: 8px; |
| 288 | } |
| 289 | |
| 290 | /** |
| 291 | * Folded State |
| 292 | */ |
| 293 | .folded #adminmenu a.menu-top { |
| 294 | height: 31px; |
| 295 | } |
| 296 | |
| 297 | .folded #adminmenu li.toplevel_page_site-card a { |
| 298 | padding-left: 0; |
| 299 | } |
| 300 | |
| 301 | /* Auto-folding of the admin menu */ |
| 302 | @media only screen and (max-width: 960px) { |
| 303 | #adminmenu, |
| 304 | #adminmenuwrap, |
| 305 | #adminmenuback { |
| 306 | width: 272px; |
| 307 | } |
| 308 | |
| 309 | .auto-fold #adminmenu a[class*="toplevel_page_http"].wp-first-item { |
| 310 | height: auto; |
| 311 | } |
| 312 | |
| 313 | .wp-responsive-open #adminmenu a.menu-top { |
| 314 | height: auto; |
| 315 | } |
| 316 | |
| 317 | .auto-fold #adminmenu div.wp-menu-image { |
| 318 | width: 36px; |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | @media screen and (min-width: 782px) and (max-width: 960px) { |
| 323 | .auto-fold #adminmenu a.menu-top { |
| 324 | height: 34px; |
| 325 | } |
| 326 | |
| 327 | .auto-fold #adminmenu li.toplevel_page_site-card a { |
| 328 | height: 36px; |
| 329 | padding-left: 1px; |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | @media screen and (max-width: 782px) { |
| 334 | #adminmenu li.menu-top .wp-submenu>li>a, |
| 335 | .auto-fold #adminmenu li.menu-top .wp-submenu>li>a { |
| 336 | padding-left: 42px; |
| 337 | } |
| 338 | |
| 339 | .wp-responsive-open #wpbody { |
| 340 | right: inherit; |
| 341 | } |
| 342 | |
| 343 | .wp-responsive-open #wpcontent { |
| 344 | margin-left: 272px; |
| 345 | } |
| 346 | |
| 347 | .auto-fold #adminmenu, .auto-fold #adminmenuback, .auto-fold #adminmenuwrap { |
| 348 | width: 272px; |
| 349 | } |
| 350 | |
| 351 | .auto-fold #adminmenu a.site-switcher, |
| 352 | #adminmenu a.site-switcher { |
| 353 | font-size: 14px; |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | @media only screen and (max-width: 660px) { |
| 358 | #adminmenuback, |
| 359 | #adminmenuwrap, |
| 360 | #adminmenu, |
| 361 | #adminmenu .wp-submenu, |
| 362 | .auto-fold #adminmenu, |
| 363 | .auto-fold #adminmenuback, |
| 364 | .auto-fold #adminmenuwrap { |
| 365 | width: 100%; |
| 366 | z-index: 171; |
| 367 | } |
| 368 | |
| 369 | .wp-responsive-open #wpcontent { |
| 370 | margin-left: 0; |
| 371 | } |
| 372 | |
| 373 | ul#adminmenu a.wp-has-current-submenu:after, |
| 374 | ul#adminmenu>li.current>a.current:after, |
| 375 | ul#adminmenu li:hover a.wp-has-current-submenu:after, |
| 376 | .auto-fold ul#adminmenu li:hover a.wp-has-current-submenu:after { |
| 377 | display: none; |
| 378 | } |
| 379 | |
| 380 | .auto-fold #adminmenu li.toplevel_page_site-card a { |
| 381 | padding: 18px 0 18px 12px; |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | /* |
| 386 | * Styles for the nav-unification prototype (see pbAPfg-O2) |
| 387 | * TODO: depending on project outcome move or delete styles |
| 388 | */ |
| 389 | #wpadminbar #wp-admin-bar-notes #wpnt-notes-unread-count.wpn-unread { |
| 390 | top: 50%; |
| 391 | left: 50%; |
| 392 | transform: translate( -10px, -13px ); |
| 393 | |
| 394 | } |
| 395 | |
| 396 | #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar { |
| 397 | transform: translateX( 1px ); |
| 398 | } |
| 399 | |
| 400 | #wpadminbar #wp-admin-bar-notes.active .noticon-bell:before { |
| 401 | background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cmVjdCB4PSIwIiBmaWxsPSJub25lIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz48Zz48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNNi4xNCAxNC45N2wyLjgyOCAyLjgyN2MtLjM2Mi4zNjItLjg2Mi41ODYtMS40MTQuNTg2LTEuMTA1IDAtMi0uODk1LTItMiAwLS41NTIuMjI0LTEuMDUyLjU4Ni0xLjQxNHptOC44NjcgNS4zMjRMMTQuMyAyMSAzIDkuN2wuNzA2LS43MDcgMS4xMDIuMTU3Yy43NTQuMTA4IDEuNjktLjEyMiAyLjA3Ny0uNTFsMy44ODUtMy44ODRjMi4zNC0yLjM0IDYuMTM1LTIuMzQgOC40NzUgMHMyLjM0IDYuMTM1IDAgOC40NzVsLTMuODg1IDMuODg2Yy0uMzg4LjM4OC0uNjE4IDEuMzIzLS41MSAyLjA3N2wuMTU3IDEuMXoiLz48L2c+PC9zdmc+") !important; |
| 402 | } |
| 403 | |
| 404 | #wpadminbar > #wp-toolbar .wpnt-show span.noticon, |
| 405 | #wpadminbar #wp-admin-bar-notes.wpnt-show .noticon { |
| 406 | color: #ffffff; |
| 407 | } |
| 408 | |
| 409 | #wpadminbar .quicklinks ul#wp-admin-bar-root-default { |
| 410 | padding-left: 0 !important; |
| 411 | } |
| 412 | |
| 413 | #wpadminbar #wp-admin-bar-menu-toggle { |
| 414 | display: none; |
| 415 | } |
| 416 | |
| 417 | @media screen and (max-width: 782px) { |
| 418 | #wpadminbar #wp-toolbar > ul > li { |
| 419 | display: block; |
| 420 | } |
| 421 | |
| 422 | #wpadminbar .ab-top-menu > li > .ab-item { |
| 423 | box-sizing: border-box; |
| 424 | line-height: 32px; |
| 425 | } |
| 426 | |
| 427 | #wpadminbar #wp-admin-bar-ab-new-post > .ab-item { |
| 428 | box-sizing: inherit !important; |
| 429 | } |
| 430 | |
| 431 | #wpadminbar #wp-admin-bar-my-account > .ab-item { |
| 432 | padding: 7px 15px; |
| 433 | width: auto; |
| 434 | } |
| 435 | |
| 436 | #wpadminbar #wp-toolbar.quicklinks li#wp-admin-bar-my-account.with-avatar > a img { |
| 437 | display: block; |
| 438 | right: auto; |
| 439 | left: auto; |
| 440 | position: static; |
| 441 | margin-top: 3px; |
| 442 | top: 13px; |
| 443 | } |
| 444 | |
| 445 | /* Hide debug bar. */ |
| 446 | #wpadminbar #wp-toolbar.quicklinks li#wp-admin-bar-debug-bar { |
| 447 | display: none; |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | @media screen and (max-width: 480px) { |
| 452 | #wpadminbar #wp-toolbar.quicklinks li#wp-admin-bar-my-account.with-avatar > a { |
| 453 | width: auto; |
| 454 | } |
| 455 | |
| 456 | #wpadminbar #wp-toolbar.quicklinks li#wp-admin-bar-my-account.with-avatar > a img { |
| 457 | margin-top: 12px; |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | /* Dashboard Switcher */ |
| 462 | #view-link-wrap { |
| 463 | float: left; |
| 464 | margin: 0 0 0 6px; |
| 465 | } |
| 466 | |
| 467 | .screen-options-tab__wrapper { |
| 468 | position:relative |
| 469 | } |
| 470 | |
| 471 | .screen-options-tab__dropdown { |
| 472 | background-color: #fff; |
| 473 | border: 1px solid var(--color-neutral-5); |
| 474 | border-radius: 4px; |
| 475 | box-shadow: 0 4px 10px #0000001a; |
| 476 | padding: 3px; |
| 477 | position: absolute; |
| 478 | right: 20px; |
| 479 | top: 37px; |
| 480 | width:215px; |
| 481 | z-index: 9999; |
| 482 | } |
| 483 | |
| 484 | @media screen and (max-width: 782px) { |
| 485 | .screen-options-tab__dropdown { |
| 486 | right: 10px; |
| 487 | top: 47px; |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | @media screen and (max-width: 600px) { |
| 492 | .screen-options-tab__dropdown { |
| 493 | top: 93px; |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | .screen-switcher:not(:hover) .screen-switcher__button:nth-child(2) > strong { |
| 498 | color:var(--wp-admin-theme-color) |
| 499 | } |
| 500 | |
| 501 | .screen-switcher__button, a.screen-switcher__button { |
| 502 | background: transparent; |
| 503 | border: 1px solid #0000; |
| 504 | border-radius: 4px; |
| 505 | color: var(--color-text); |
| 506 | cursor: pointer; |
| 507 | display: inline-block; |
| 508 | font-size: .75rem; |
| 509 | line-height: normal; |
| 510 | text-decoration: none; |
| 511 | padding: 8px; |
| 512 | text-align:left |
| 513 | } |
| 514 | |
| 515 | .screen-switcher__button:nth-child(2), a.screen-switcher__button:nth-child(2) { |
| 516 | border-color: var(--wp-admin-theme-color); |
| 517 | margin-bottom:4px |
| 518 | } |
| 519 | |
| 520 | .screen-switcher__button:last-child, a.screen-switcher__button:last-child { |
| 521 | margin-bottom:0 |
| 522 | } |
| 523 | |
| 524 | .screen-switcher__button strong, a.screen-switcher__button strong { |
| 525 | display: block; |
| 526 | font-size: 13px; |
| 527 | margin-bottom:4px |
| 528 | } |
| 529 | |
| 530 | .screen-switcher__button:focus > strong, .screen-switcher__button:hover > strong, a.screen-switcher__button:focus > strong, a.screen-switcher__button:hover > strong { |
| 531 | color:var(--wp-admin-theme-color) |
| 532 | } |
| 533 | |
| 534 | /** Add new site button **/ |
| 535 | #adminmenu { |
| 536 | display: flex; |
| 537 | flex-direction: column; |
| 538 | } |
| 539 | #adminmenu .menu-top[class*="/start?ref=calypso-sidebar"] { |
| 540 | order: 99999; |
| 541 | } |
| 542 | |
| 543 | body:not(.folded) #adminmenu .menu-top[class*="/start?ref=calypso-sidebar"] { |
| 544 | padding: 8px; |
| 545 | width: auto; |
| 546 | } |
| 547 | |
| 548 | body:not(.folded) #adminmenu .menu-top[class*="/start?ref=calypso-sidebar"] a { |
| 549 | background: transparent; |
| 550 | border-color: var(--transparent-button-text-color, currentcolor); |
| 551 | display: flex; |
| 552 | justify-content: center; |
| 553 | margin-top: auto; |
| 554 | background: transparent; |
| 555 | border-style: solid; |
| 556 | border-width: 1px; |
| 557 | cursor: pointer; |
| 558 | margin: 0; |
| 559 | outline: 0; |
| 560 | overflow: hidden; |
| 561 | text-align: center; |
| 562 | text-overflow: ellipsis; |
| 563 | text-decoration: none; |
| 564 | vertical-align: top; |
| 565 | box-sizing: border-box; |
| 566 | font-size: 14px; |
| 567 | line-height: 22px; |
| 568 | border-radius: 2px; |
| 569 | padding: 8px 14px; |
| 570 | appearance: none; |
| 571 | } |
| 572 | |
| 573 | body:not(.folded) #adminmenu .menu-top[class*="/start?ref=calypso-sidebar"] a:hover { |
| 574 | box-shadow: none; |
| 575 | } |
| 576 | |
| 577 | body:not(.folded) #adminmenu .menu-top[class*="/start?ref=calypso-sidebar"] a .wp-menu-name { |
| 578 | padding: 0; |
| 579 | } |
| 580 | |
| 581 | body:not(.folded) #adminmenu .menu-top[class*="/start?ref=calypso-sidebar"] a .wp-menu-image { |
| 582 | display: none; |
| 583 | } |
| 584 |