Ticket #12374: newicon.patch
| File newicon.patch, 1.5 KB (added by ocean90, 3 years ago) |
|---|
-
wp-admin/css/ms.dev.css
1 1 /* Site Admin Menu */ 2 2 #adminmenu .menu-icon-site div.wp-menu-image { 3 background: transparent url('../images/ site-admin.png') no-repeat scroll 0px -33px;3 background: transparent url('../images/menu.png') no-repeat scroll -361px -33px; 4 4 } 5 5 6 #adminmenu .menu-icon-site:hover div.wp-menu-image { 7 background: transparent url('../images/site-admin.png') no-repeat scroll 0px -1px; 6 #adminmenu .menu-icon-site:hover div.wp-menu-image, 7 #adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image { 8 background: transparent url('../images/menu.png') no-repeat scroll -361px -1px; 8 9 } 9 10 11 /* Screen icon */ 12 #icon-ms-admin { 13 background: transparent url(../images/icons32.png) no-repeat -659px -5px; 14 } 15 10 16 /* Dashboard: MS Specific Data */ 11 17 #dashboard_right_now p.musub { 12 18 margin-top: 12px; -
wp-admin/includes/template.php
3802 3802 else 3803 3803 $name = $screen->base; 3804 3804 3805 // @todo Remove this once we have a site admin icon3806 if ( 'ms-admin' == $screen->parent_base )3807 $name = 'tools';3808 3809 3805 if ( 'edit' == $name && isset($screen->post_type) && 'page' == $screen->post_type ) 3810 3806 $name = 'edit-pages'; 3811 3807 }
