Index: src/wp-admin/css/admin-menu.css
===================================================================
--- src/wp-admin/css/admin-menu.css	(revision 32991)
+++ src/wp-admin/css/admin-menu.css	(working copy)
@@ -901,10 +901,10 @@
 	}
 
 	#wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
-		content: '\f228';
+		content: '\f120';
 		display: inline-block;
 		float: left;
-		font: normal 40px/45px 'Dashicons';
+		font: normal 20px/45px 'Dashicons';
 		vertical-align: middle;
 		outline: none;
 		margin: 0;
Index: src/wp-admin/menu.php
===================================================================
--- src/wp-admin/menu.php	(revision 32991)
+++ src/wp-admin/menu.php	(working copy)
@@ -41,6 +41,7 @@
 	$submenu[ 'index.php' ][10] = array( sprintf( __('Updates %s'), "<span class='update-plugins count-{$update_data['counts']['total']}' title='{$update_data['title']}'><span class='update-count'>" . number_format_i18n($update_data['counts']['total']) . "</span></span>" ), $cap, 'update-core.php');
 	unset( $cap );
 }
+$submenu[ 'index.php' ][15] = array( __('About'), 'read', 'about.php' );
 
 $menu[4] = array( '', 'read', 'separator1', '', 'wp-menu-separator' );
 
@@ -155,16 +156,6 @@
 		$submenu['themes.php'][10] = array( __( 'Menus' ), 'edit_theme_options', 'nav-menus.php' );
 	}
 
-	if ( current_theme_supports( 'custom-header' ) && current_user_can( 'customize') ) {
-		$customize_header_url = add_query_arg( array( 'autofocus' => array( 'control' => 'header_image' ) ), $customize_url );
-		$submenu['themes.php'][15] = array( __( 'Header' ), $appearance_cap, esc_url( $customize_header_url ), '', 'hide-if-no-customize' );
-	}
-
-	if ( current_theme_supports( 'custom-background' ) && current_user_can( 'customize') ) {
-		$customize_background_url = add_query_arg( array( 'autofocus' => array( 'control' => 'background_image' ) ), $customize_url );
-		$submenu['themes.php'][20] = array( __( 'Background' ), $appearance_cap, esc_url( $customize_background_url ), '', 'hide-if-no-customize' );
-	}
-
 	unset( $customize_url );
 
 unset( $appearance_cap );
Index: src/wp-includes/admin-bar.php
===================================================================
--- src/wp-includes/admin-bar.php	(revision 32991)
+++ src/wp-includes/admin-bar.php	(working copy)
@@ -96,63 +96,6 @@
 }
 
 /**
- * Add the WordPress logo menu.
- *
- * @since 3.3.0
- *
- * @param WP_Admin_Bar $wp_admin_bar
- */
-function wp_admin_bar_wp_menu( $wp_admin_bar ) {
-	$wp_admin_bar->add_menu( array(
-		'id'    => 'wp-logo',
-		'title' => '<span class="ab-icon"></span><span class="screen-reader-text">' . __( 'About WordPress' ) . '</span>',
-		'href'  => self_admin_url( 'about.php' ),
-	) );
-
-	if ( is_user_logged_in() ) {
-		// Add "About WordPress" link
-		$wp_admin_bar->add_menu( array(
-			'parent' => 'wp-logo',
-			'id'     => 'about',
-			'title'  => __('About WordPress'),
-			'href'   => self_admin_url( 'about.php' ),
-		) );
-	}
-
-	// Add WordPress.org link
-	$wp_admin_bar->add_menu( array(
-		'parent'    => 'wp-logo-external',
-		'id'        => 'wporg',
-		'title'     => __('WordPress.org'),
-		'href'      => __('https://wordpress.org/'),
-	) );
-
-	// Add codex link
-	$wp_admin_bar->add_menu( array(
-		'parent'    => 'wp-logo-external',
-		'id'        => 'documentation',
-		'title'     => __('Documentation'),
-		'href'      => __('https://codex.wordpress.org/'),
-	) );
-
-	// Add forums link
-	$wp_admin_bar->add_menu( array(
-		'parent'    => 'wp-logo-external',
-		'id'        => 'support-forums',
-		'title'     => __('Support Forums'),
-		'href'      => __('https://wordpress.org/support/'),
-	) );
-
-	// Add feedback link
-	$wp_admin_bar->add_menu( array(
-		'parent'    => 'wp-logo-external',
-		'id'        => 'feedback',
-		'title'     => __('Feedback'),
-		'href'      => __('https://wordpress.org/support/forum/requests-and-feedback'),
-	) );
-}
-
-/**
  * Add the sidebar toggle button.
  *
  * @since 3.8.0
@@ -278,43 +221,46 @@
 
 	$title = wp_html_excerpt( $blogname, 40, '&hellip;' );
 
-	$wp_admin_bar->add_menu( array(
-		'id'    => 'site-name',
-		'title' => $title,
-		'href'  => is_admin() ? home_url( '/' ) : admin_url(),
-	) );
+	$notification = false;
+	$awaiting_mod = wp_count_comments();
+	if ( current_user_can( 'edit_posts' ) && $awaiting_mod->moderated > 0 ) {
+		$notification = true;
+	} elseif ( ! is_multisite() && current_user_can( 'update_plugins' ) ) {
+		$update_data = wp_get_update_data();
+		if ( $update_data['counts']['plugins'] > 0 ) {
+			$notification = true;
+		}
+	}
 
-	// Create submenu items.
+	// Add front/admin cross-links.
 
 	if ( is_admin() ) {
 		// Add an option to visit the site.
 		$wp_admin_bar->add_menu( array(
-			'parent' => 'site-name',
-			'id'     => 'view-site',
+			'id'     => 'visit-site',
 			'title'  => __( 'Visit Site' ),
 			'href'   => home_url( '/' ),
 		) );
-
-		if ( is_blog_admin() && is_multisite() && current_user_can( 'manage_sites' ) ) {
-			$wp_admin_bar->add_menu( array(
-				'parent' => 'site-name',
-				'id'     => 'edit-site',
-				'title'  => __( 'Edit Site' ),
-				'href'   => network_admin_url( 'site-info.php?id=' . get_current_blog_id() ),
-			) );
-		}
-
 	} else {
 		// We're on the front end, link to the Dashboard.
 		$wp_admin_bar->add_menu( array(
-			'parent' => 'site-name',
+			'id'    => 'site-name',
+			'title' => $title,
+			'href'  => admin_url(),
+			'meta'   => array(
+				'class' => ( ! is_admin() && $notification ) ? 'notification-pending' : '',
+			),
+		) );
+
+		$icon = '<span class="ab-icon dashicons-dashboard"></span>';
+		$wp_admin_bar->add_menu( array(
 			'id'     => 'dashboard',
-			'title'  => __( 'Dashboard' ),
+			'title'  => $icon . '<span class="ab-label">' . __( 'Dashboard' ) . '</span>',
 			'href'   => admin_url(),
 		) );
 
-		// Add the appearance submenu items.
-		wp_admin_bar_appearance_menu( $wp_admin_bar );
+		// Add the admin submenu items.
+		wp_admin_bar_admin_menu( $wp_admin_bar );
 	}
 }
 
@@ -629,160 +575,166 @@
 }
 
 /**
- * Add edit comments link with awaiting moderation count bubble.
+ * Add "Customize" menu.
  *
- * @since 3.1.0
+ * @since 4.3.0
  *
  * @param WP_Admin_Bar $wp_admin_bar
  */
-function wp_admin_bar_comments_menu( $wp_admin_bar ) {
-	if ( !current_user_can('edit_posts') )
-		return;
-
-	$awaiting_mod = wp_count_comments();
-	$awaiting_mod = $awaiting_mod->moderated;
-	$awaiting_title = esc_attr( sprintf( _n( '%s comment awaiting moderation', '%s comments awaiting moderation', $awaiting_mod ), number_format_i18n( $awaiting_mod ) ) );
-
-	$icon  = '<span class="ab-icon"></span>';
-	$title = '<span id="ab-awaiting-mod" class="ab-label awaiting-mod pending-count count-' . $awaiting_mod . '">' . number_format_i18n( $awaiting_mod ) . '</span>';
-
-	$wp_admin_bar->add_menu( array(
-		'id'    => 'comments',
-		'title' => $icon . $title,
-		'href'  => admin_url('edit-comments.php'),
-		'meta'  => array( 'title' => $awaiting_title ),
-	) );
+function wp_admin_bar_customize_menu( $wp_admin_bar ) {
+	if ( current_user_can( 'customize' ) ) {
+		$current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
+		$customize_url = add_query_arg( 'url', urlencode( $current_url ), wp_customize_url() );
+		$title = '<span class="ab-icon"></span><span class="ab-label">' . __( 'Customize' ) . '</span>';
+		$wp_admin_bar->add_menu( array(
+			'id'     => 'customize',
+			'title'  => $title,
+			'href'   => $customize_url,
+			'meta'   => array(
+				'class' => 'hide-if-no-customize',
+			),
+		) );
+		add_action( 'wp_before_admin_bar_render', 'wp_customize_support_script' );
+	}
 }
 
 /**
- * Add appearance submenu items to the "Site Name" menu.
+ * Add admin submenu items to the "Site Name" menu.
  *
- * @since 3.1.0
+ * @since 4.3.0
  *
  * @param WP_Admin_Bar $wp_admin_bar
  */
-function wp_admin_bar_appearance_menu( $wp_admin_bar ) {
-	$wp_admin_bar->add_group( array( 'parent' => 'site-name', 'id' => 'appearance' ) );
+function wp_admin_bar_admin_menu( $wp_admin_bar ) {
+	$wp_admin_bar->add_group( array( 'parent' => 'site-name', 'id' => 'admin' ) );
 
-	$current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
-	$customize_url = add_query_arg( 'url', urlencode( $current_url ), wp_customize_url() );
+	// Post types.
+	$cpts = (array) get_post_types( array( 'show_in_admin_bar' => true ), 'objects' );
 
-	if ( current_user_can( 'switch_themes' ) ) {
-		$wp_admin_bar->add_menu( array(
-			'parent' => 'appearance',
-			'id'     => 'themes',
-			'title'  => __( 'Themes' ),
-			'href'   => admin_url( 'themes.php' ),
-			'meta'   => array(
-				'class' => 'hide-if-customize',
-			),
-		) );
+	if ( isset( $cpts['post'] ) && current_user_can( $cpts['post']->cap->edit_posts ) ) {
+		$menu_icon = '<span class="ab-icon dashicons-admin-post"></span>';
+		$actions[ 'edit.php' ] = array( $cpts['post']->labels->name, 'edit-posts', $menu_icon );
+	}
 
-		if ( current_user_can( 'customize' ) ) {
-			$wp_admin_bar->add_menu( array(
-				'parent' => 'appearance',
-				'id'     => 'customize-themes',
-				'title'  => __( 'Themes' ),
-				'href'   => add_query_arg( urlencode( 'autofocus[section]' ), 'themes', $customize_url ), // urlencode() needed due to #16859
-				'meta'   => array(
-					'class' => 'hide-if-no-customize',
-				),
-			) );
-		}
+	if ( isset( $cpts['attachment'] ) && current_user_can( 'edit_posts' ) ) {
+		$menu_icon = '<span class="ab-icon dashicons-admin-media"></span>';
+		$actions[ 'upload.php' ] = array( $cpts['attachment']->labels->name, 'edit-media', $menu_icon );
 	}
 
-	if ( current_user_can( 'customize' ) ) {
-		$wp_admin_bar->add_menu( array(
-			'parent' => 'appearance',
-			'id'     => 'customize',
-			'title'  => __('Customize'),
-			'href'   => $customize_url,
-			'meta'   => array(
-				'class' => 'hide-if-no-customize',
-			),
-		) );
-		add_action( 'wp_before_admin_bar_render', 'wp_customize_support_script' );
+	if ( isset( $cpts['page'] ) && current_user_can( $cpts['page']->cap->edit_posts ) ) {
+		$menu_icon = '<span class="ab-icon dashicons-admin-page"></span>';
+		$actions[ 'edit.php?post_type=page' ] = array( $cpts['page']->labels->name, 'edit-pages', $menu_icon );
 	}
 
-	if ( ! current_user_can( 'edit_theme_options' ) ) {
-		return;
+	unset( $cpts['post'], $cpts['page'], $cpts['attachment'] );
+
+	// Add any additional custom post types.
+	foreach ( $cpts as $cpt ) {
+		if ( ! current_user_can( $cpt->cap->edit_posts ) ) {
+			continue;
+		}
+		if ( is_string( $cpt->menu_icon ) ) {
+			// Special handling for data:image/svg+xml and Dashicons.
+			if ( 0 === strpos( $cpt->menu_icon, 'dashicons-' ) ) {
+				$menu_icon = '<span class="ab-icon ' . $cpt->menu_icon . '"></span>';
+			} elseif ( 0 === strpos( $cpt->menu_icon, 'data:image/svg+xml;base64,' ) ) {
+				$menu_icon = '<span class="ab-icon"><img src="' . $cpt->menu_icon . '"></span>';
+			} else {
+				$menu_icon = '<span class="ab-icon"><img src="' . esc_url( $cpt->menu_icon ) . '"></span>';
+			}
+		} else {
+			$menu_icon   = '<span class="ab-icon dashicons-admin-post"></span>';
+		}
+		$key = 'edit.php?post_type=' . $cpt->name;
+		$actions[ $key ] = array( $cpt->labels->menu_name, 'edit-' . $cpt->name, $menu_icon );
 	}
 
-	if ( current_theme_supports( 'widgets' )  ) {
-		$wp_admin_bar->add_menu( array(
-			'parent' => 'appearance',
-			'id'     => 'widgets',
-			'title'  => __( 'Widgets' ),
-			'href'   => admin_url( 'widgets.php' ),
-			'meta'   => array(
-				'class' => 'hide-if-customize',
-			),
-		) );
+	if ( $actions ) {
+		foreach ( $actions as $link => $action ) {
+			list( $title, $id, $menu_icon ) = $action;
 
-		if ( current_user_can( 'customize' ) ) {
 			$wp_admin_bar->add_menu( array(
-				'parent' => 'appearance',
-				'id'     => 'customize-widgets',
-				'title'  => __( 'Widgets' ),
-				'href'   => add_query_arg( urlencode( 'autofocus[panel]' ), 'widgets', $customize_url ), // urlencode() needed due to #16859
-				'meta'   => array(
-					'class' => 'hide-if-no-customize',
-				),
+				'parent'    => 'admin',
+				'id'        => $id,
+				'title'     => $menu_icon . '<span class="ab-label">' . $title . '</span>',
+				'href'      => admin_url( $link )
 			) );
 		}
 	}
 
-	if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) )
-		$wp_admin_bar->add_menu( array( 'parent' => 'appearance', 'id' => 'menus', 'title' => __('Menus'), 'href' => admin_url('nav-menus.php') ) );
+	// Comments
+	if ( current_user_can( 'edit_posts' ) ) {
+		$awaiting_mod = wp_count_comments();
+		$awaiting_mod = $awaiting_mod->moderated;
+		$icon = '<span class="ab-icon dashicons-admin-comments"></span>';
+		$wp_admin_bar->add_menu( array(
+			'parent' => 'admin',
+			'id'     => 'comments',
+			'title'  => $icon . '<span class="ab-label">' . sprintf( __( 'Comments %s' ), "<span class='awaiting-mod count-$awaiting_mod'><span class='pending-count'>" . number_format_i18n( $awaiting_mod ) . "</span></span>" ) . '</span>',
+			'href'   => admin_url( 'edit-comments.php' ),
+		) );
+	}
 
-	if ( current_theme_supports( 'custom-background' ) ) {
+	// Appearance.
+	if ( current_user_can( 'switch_themes' ) || current_user_can( 'edit_theme_options' ) ) {
+		$icon = '<span class="ab-icon dashicons-admin-appearance"></span>';
 		$wp_admin_bar->add_menu( array(
-			'parent' => 'appearance',
-			'id'     => 'background',
-			'title'  => __( 'Background' ),
-			'href'   => admin_url( 'themes.php?page=custom-background' ),
-			'meta'   => array(
-				'class' => 'hide-if-customize',
-			),
+			'parent' => 'admin',
+			'id'     => 'themes',
+			'title'  => $icon . '<span class="ab-label">'  . __( 'Appearance' ) . '</span>', // @todo should we just say themes here since there isn't a submenu?
+			'href'   => admin_url( 'themes.php' )
 		) );
+	}
 
-		if ( current_user_can( 'customize' ) ) {
-			$wp_admin_bar->add_menu( array(
-				'parent' => 'appearance',
-				'id'     => 'customize-background',
-				'title'  => __( 'Background' ),
-				'href'   => add_query_arg( urlencode( 'autofocus[control]' ), 'background_image', $customize_url ), // urlencode() needed due to #16859
-				'meta'   => array(
-					'class' => 'hide-if-no-customize',
-				),
-			) );
+	// Plugins.
+	if ( current_user_can( 'activate_plugins' ) ) {
+		if ( ! is_multisite() && current_user_can( 'update_plugins' ) ) {
+			$update_data = wp_get_update_data();
+			$count = "<span class='update-plugins count-{$update_data['counts']['plugins']}'><span class='plugin-count'>" . number_format_i18n($update_data['counts']['plugins']) . "</span></span>";
+		} else {
+			$count = '';
 		}
+		$icon = '<span class="ab-icon dashicons-admin-plugins"></span>';
+		$wp_admin_bar->add_menu( array(
+			'parent' => 'admin',
+			'id'     => 'plugins',
+			'title'  => $icon . '<span class="ab-label">' . sprintf( __( 'Plugins %s' ), $count ) . '</span>',
+			'href'   => admin_url( 'plugins.php' ),
+		) );
 	}
 
-	if ( current_theme_supports( 'custom-header' ) ) {
+	// Users.
+	if ( current_user_can( 'list_users' ) ) {
+		$icon = '<span class="ab-icon dashicons-admin-users"></span>';
 		$wp_admin_bar->add_menu( array(
-			'parent' => 'appearance',
-			'id'     => 'header',
-			'title'  => __( 'Header' ),
-			'href'   => admin_url( 'themes.php?page=custom-header' ),
-			'meta'   => array(
-				'class' => 'hide-if-customize',
-			),
+			'parent' => 'admin',
+			'id'     => 'edit-users',
+			'title'  => $icon . '<span class="ab-label">' . __( 'Users' ) . '</span>',
+			'href'   => admin_url( 'users.php' ),
 		) );
+	}
 
-		if ( current_user_can( 'customize' ) ) {
-			$wp_admin_bar->add_menu( array(
-				'parent' => 'appearance',
-				'id'     => 'customize-header',
-				'title'  => __( 'Header' ),
-				'href'   => add_query_arg( urlencode( 'autofocus[control]' ), 'header_image', $customize_url ), // urlencode() needed due to #16859
-				'meta'   => array(
-					'class' => 'hide-if-no-customize',
-				),
-			) );
-		}
+	// Users.
+	if ( current_user_can( 'edit_posts' ) ) {
+		$icon = '<span class="ab-icon dashicons-admin-tools"></span>';
+		$wp_admin_bar->add_menu( array(
+			'parent' => 'admin',
+			'id'     => 'tools',
+			'title'  => $icon . '<span class="ab-label">' . __( 'Tools' ) . '</span>',
+			'href'   => admin_url( 'tools.php' )
+		) );
 	}
 
+	// Settings.
+	if ( current_user_can( 'manage_options' ) ) {
+		$icon = '<span class="ab-icon dashicons-admin-settings"></span>';
+		$wp_admin_bar->add_menu( array(
+			'parent' => 'admin',
+			'id'     => 'settings',
+			'title'  => $icon . '<span class="ab-label">' . __( 'Settings' ) . '</span>',
+			'href'   => admin_url( 'options.php' )
+		) );
+	}
 }
 
 /**
@@ -854,14 +806,6 @@
 			'class' => 'ab-top-secondary',
 		),
 	) );
-
-	$wp_admin_bar->add_group( array(
-		'parent' => 'wp-logo',
-		'id'     => 'wp-logo-external',
-		'meta'   => array(
-			'class' => 'ab-sub-secondary',
-		),
-	) );
 }
 
 /**
Index: src/wp-includes/class-wp-admin-bar.php
===================================================================
--- src/wp-includes/class-wp-admin-bar.php	(revision 32991)
+++ src/wp-includes/class-wp-admin-bar.php	(working copy)
@@ -553,14 +553,13 @@
 
 		// Site related.
 		add_action( 'admin_bar_menu', 'wp_admin_bar_sidebar_toggle', 0 );
-		add_action( 'admin_bar_menu', 'wp_admin_bar_wp_menu', 10 );
-		add_action( 'admin_bar_menu', 'wp_admin_bar_my_sites_menu', 20 );
-		add_action( 'admin_bar_menu', 'wp_admin_bar_site_menu', 30 );
+		add_action( 'admin_bar_menu', 'wp_admin_bar_site_menu', 20 );
+		add_action( 'admin_bar_menu', 'wp_admin_bar_my_sites_menu', 30 );
+		add_action( 'admin_bar_menu', 'wp_admin_bar_customize_menu', 35 );
 		add_action( 'admin_bar_menu', 'wp_admin_bar_updates_menu', 40 );
 
 		// Content related.
 		if ( ! is_network_admin() && ! is_user_admin() ) {
-			add_action( 'admin_bar_menu', 'wp_admin_bar_comments_menu', 60 );
 			add_action( 'admin_bar_menu', 'wp_admin_bar_new_content_menu', 70 );
 		}
 		add_action( 'admin_bar_menu', 'wp_admin_bar_edit_menu', 80 );
Index: src/wp-includes/css/admin-bar.css
===================================================================
--- src/wp-includes/css/admin-bar.css	(revision 32991)
+++ src/wp-includes/css/admin-bar.css	(working copy)
@@ -215,9 +215,9 @@
 	color: #00b9eb;
 }
 
-#wpadminbar > #wp-toolbar li:hover span.ab-label,
-#wpadminbar > #wp-toolbar li.hover span.ab-label,
-#wpadminbar > #wp-toolbar a:focus span.ab-label {
+#wpadminbar > #wp-toolbar li.hover > a span.ab-label,
+#wpadminbar > #wp-toolbar li:hover > a span.ab-label,
+#wpadminbar > #wp-toolbar a:focus > span.ab-label {
 	color: #00b9eb;
 }
 
@@ -276,12 +276,10 @@
 #wpadminbar .quicklinks .menupop.hover ul li a:focus,
 #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover,
 #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus,
-#wpadminbar li:hover .ab-icon:before,
-#wpadminbar li:hover .ab-item:before,
-#wpadminbar li a:focus .ab-icon:before,
+#wpadminbar li:hover > a .ab-icon:before,
+#wpadminbar li:hover > .ab-item:before,
+#wpadminbar li a:focus > .ab-icon:before,
 #wpadminbar li .ab-item:focus:before,
-#wpadminbar li.hover .ab-icon:before,
-#wpadminbar li.hover .ab-item:before,
 #wpadminbar li:hover #adminbarsearch:before,
 #wpadminbar li #adminbarsearch.adminbar-focused:before {
 	color: #00b9eb;
@@ -458,25 +456,6 @@
 	width: auto;
 }
 
-/**
- * WP Logo
- */
-#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon {
-	width: 15px;
-	height: 20px;
-	margin-right: 0;
-	padding: 6px 0 5px;
-}
-
-#wpadminbar #wp-admin-bar-wp-logo > .ab-item {
-	padding: 0 7px;
-}
-
-#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
-	content: '\f120';
-	top: 2px;
-}
-
 /*
  * My Sites & Site Title
  */
@@ -501,10 +480,14 @@
 	margin: 6px 8px 0 -2px;
 }
 
-#wpadminbar #wp-admin-bar-appearance {
-	margin-top: -12px;
+#wpadminbar #wp-admin-bar-site-name-default {
+	padding: 11px 0;
 }
 
+#wpadminbar #wp-admin-bar-themes {
+	margin-top: 11px;
+}
+
 #wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
 #wpadminbar #wp-admin-bar-site-name > .ab-item:before {
 	content: '\f112';
@@ -516,32 +499,112 @@
 	top: 2px;
 }
 
+#wpadminbar #wp-admin-bar-view > .ab-item:before {
+	content: '\f177';
+	top: 2px;
+}
+
 #wpadminbar #wp-admin-bar-site-name > .ab-item:before {
-	content: "\f226";
+	content: "\f120";
+	top: 2px;
+	margin-right: 9px;
 }
 
-.wp-admin #wpadminbar #wp-admin-bar-site-name > .ab-item:before {
+#wpadminbar #wp-admin-bar-visit-site > .ab-item:before {
 	content: "\f102";
+	top: 2px;
 }
 
+#wpadminbar #wp-admin-bar-dashboard {
+	display: none;
+}
 
+/**
+ * Admin Menu
+ */
+#wpadminbar #wp-admin-bar-admin.ab-submenu {
+	padding: 0;
+}
 
+#wp-admin-bar-site-name .ab-sub-wrapper {
+	width: 160px;
+}
+
+#wp-admin-bar-site-name ul .ab-item {
+	font-size: 18px;
+}
+
+#wpadminbar #wp-admin-bar-site-name ul > li > .ab-item {
+	font-size: 14px;
+	line-height: 18px;
+	padding: 0;
+	min-height: 34px;
+}
+
+#wpadminbar #wp-admin-bar-site-name ul > li> .ab-item .ab-label {
+	height: auto;
+	display: inline-block;
+	font-size: 14px;
+	line-height: 14px;
+	padding: 10px 0;
+}
+
+#wpadminbar > #wp-toolbar #wp-admin-bar-site-name ul > li > .ab-item .ab-icon {
+	padding: 0;
+	width: 34px;
+	height: 36px;
+	text-align: center;
+	margin-right: 0;
+}
+
+#wpadminbar > #wp-toolbar #wp-admin-bar-site-name ul > li > .ab-item .ab-icon:before {
+	padding: 7px 0;
+	display: inline-block;
+}
+
+
 /**
  * Comments
  */
-#wpadminbar #wp-admin-bar-comments .ab-icon {
-	margin-right: 6px;
+#wp-admin-bar-site-name.notification-pending:before {
+	content: "";
+	width: 6px;
+	height: 6px;
+	background: #d54e21;
+	position: absolute;
+	top: 6px;
+	left: 23px;
+	border-radius: 100%;
+	z-index: 1;
 }
 
-#wpadminbar #wp-admin-bar-comments .ab-icon:before {
-	content: '\f101';
-	top: 3px;
+#wpadminbar .awaiting-mod,
+#wpadminbar .update-plugins {
+	display: inline-block;
+	background-color: #d54e21;
+	color: #fff;
+	font-size: 9px;
+	line-height: 17px;
+	font-weight: 600;
+	margin: -2px 0 0 2px;
+	vertical-align: top;
+	-webkit-border-radius: 10px;
+	border-radius: 10px;
+	z-index: 26;
 }
 
-#wpadminbar #wp-admin-bar-comments .count-0 {
-	opacity: .5;
+#wpadminbar li .awaiting-mod span,
+#wpadminbar li span.update-plugins span {
+	display: block;
+	padding: 0 6px;
+	font-size: 9px;
+	line-height: 17px;
 }
 
+#wpadminbar li span.count-0 {
+	display: none;
+}
+
 /**
  * New Content
  */
@@ -551,6 +614,18 @@
 }
 
 /**
+ * Customize
+ */
+#wpadminbar #wp-admin-bar-customize .ab-icon {
+	margin-right: 6px;
+}
+
+#wpadminbar #wp-admin-bar-customize .ab-icon:before {
+	content: '\f180';
+	top: 2px;
+}
+
+/**
  * Updates
  */
 #wpadminbar #wp-admin-bar-updates .ab-icon:before {
@@ -797,7 +872,7 @@
 	}
 
 	#wpadminbar .ab-icon {
-		font: 40px/1 dashicons !important;
+		font: 20px/40px dashicons !important;
 		margin: 0;
 		padding: 0;
 		width: 52px;
@@ -807,6 +882,7 @@
 
 	#wpadminbar .ab-icon:before {
 		text-align: center;
+		padding: 0;
 	}
 
 	#wpadminbar .ab-submenu {
@@ -846,24 +922,6 @@
 		display: none;
 	}
 
-	/* WP logo */
-	#wpadminbar #wp-admin-bar-wp-logo > .ab-item {
-		padding: 0;
-	}
-
-	#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon {
-		padding: 0;
-		width: 52px;
-		height: 46px;
-		text-align: center;
-		vertical-align: top;
-	}
-
-	#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
-		font: 28px/1 'dashicons' !important;
-		top: -3px;
-	}
-
 	#wpadminbar .ab-icon,
 	#wpadminbar .ab-item:before {
 		padding: 0;
@@ -872,7 +930,9 @@
 	/* My Sites and "Site Title" menu */
 	#wpadminbar #wp-admin-bar-my-sites > .ab-item,
 	#wpadminbar #wp-admin-bar-site-name > .ab-item,
+	#wpadminbar #wp-admin-bar-visit-site > .ab-item,
 	#wpadminbar #wp-admin-bar-edit > .ab-item,
+	#wpadminbar #wp-admin-bar-view > .ab-item,
 	#wpadminbar #wp-admin-bar-my-account > .ab-item {
 		text-indent: 100%;
 		white-space: nowrap;
@@ -890,13 +950,16 @@
 		margin-right: 0;
 	}
 
+	#wpadminbar #wp-admin-bar-visit-site > .ab-item:before,
 	#wpadminbar #wp-admin-bar-edit > .ab-item:before,
+	#wpadminbar #wp-admin-bar-view > .ab-item:before,
 	#wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
 	#wpadminbar #wp-admin-bar-site-name > .ab-item:before,
+	#wpadminbar #wp-admin-bar-customize > .ab-item:before,
 	#wpadminbar #wp-admin-bar-my-account > .ab-item:before {
 		display: block;
 		text-indent: 0;
-		font: normal 32px/1 'dashicons';
+		font: normal 20px/32px 'dashicons';
 		speak: none;
 		top: 7px;
 		width: 52px;
@@ -905,6 +968,18 @@
 		-moz-osx-font-smoothing: grayscale;
 	}
 
+	#wpadminbar > #wp-toolbar #wp-admin-bar-site-name ul > li > .ab-item .ab-icon:before {
+		padding: 0;
+	}
+
+	#wpadminbar #wp-admin-bar-dashboard {
+		display: block;
+	}
+
+	#wpadminbar #wp-admin-bar-dashboard .ab-icon:before {
+		top: 4px;
+	}
+
 	#wpadminbar #wp-admin-bar-appearance {
 		margin-top: 0;
 	}
@@ -937,14 +1012,13 @@
 		top: 3px;
 	}
 
-	/* Comments */
-	#wpadminbar #wp-admin-bar-comments .ab-icon {
+	/* Customize */
+	#wpadminbar #wp-admin-bar-customize .ab-icon {
 		margin: 0;
 	}
 
-	#wpadminbar #wp-admin-bar-comments .ab-icon:before {
+	#wpadminbar #wp-admin-bar-customize .ab-icon:before {
 		display: block;
-		font-size: 34px;
 		height: 46px;
 		line-height: 47px;
 		top: 0;
@@ -1001,14 +1075,15 @@
 		display: none;
 	}
 
+	#wpadminbar li#wp-admin-bar-site-name,
 	#wpadminbar li#wp-admin-bar-menu-toggle,
-	#wpadminbar li#wp-admin-bar-wp-logo,
 	#wpadminbar li#wp-admin-bar-my-sites,
+	#wpadminbar li#wp-admin-bar-visit-site,
 	#wpadminbar li#wp-admin-bar-updates,
-	#wpadminbar li#wp-admin-bar-site-name,
 	#wpadminbar li#wp-admin-bar-new-content,
 	#wpadminbar li#wp-admin-bar-edit,
-	#wpadminbar li#wp-admin-bar-comments,
+	#wpadminbar li#wp-admin-bar-view,
+	#wpadminbar li#wp-admin-bar-customize,
 	#wpadminbar li#wp-admin-bar-my-account {
 		display: block;
 	}
