Index: src/wp-admin/css/customize-nav-menus.css
===================================================================
--- src/wp-admin/css/customize-nav-menus.css	(revision 33589)
+++ src/wp-admin/css/customize-nav-menus.css	(working copy)
@@ -605,7 +605,13 @@
 	overflow-y: hidden; /* avoid scrollbar jitter with animating heights */
 }
 
-#available-menu-items #available-menu-items-search.open {
+#available-menu-items-search {
+	border-bottom: 1px solid #dfdfdf;
+	padding: 0 15px;
+	background: #eee;
+}
+
+#available-menu-items-search.open {
 	height: 100%;
 	border-bottom: none;
 }
@@ -616,8 +622,7 @@
 	background: #fff;
 }
 
-#available-menu-items .open .accordion-section-title,
-#available-menu-items #available-menu-items-search .accordion-section-title {
+#available-menu-items .open .accordion-section-title {
 	background: #eee;
 }
 
@@ -690,10 +695,6 @@
 	display: none;
 }
 
-#available-menu-items-search.cannot-expand .accordion-section-title .spinner {
-	display: block;
-}
-
 #available-menu-items .cannot-expand .accordion-section-title .no-items {
 	display: block;
 	color: #777;
@@ -709,13 +710,16 @@
 	max-height: 290px;
 }
 
-#available-menu-items #available-menu-items-search .accordion-section-content {
+#available-menu-items-search .accordion-section-content {
 	position: absolute;
-	left: 1px;
+	left: 0;
 	top: 60px; /* below title div / search input */
 	bottom: 0px; /* 100% height that still triggers lazy load */
+	width: 270px;
 	max-height: none;
-	width: 270px;
+	min-height: 120px;
+	margin: 0;
+	padding: 1px 15px 15px;
 }
 
 #available-menu-items .menu-item-tpl {
@@ -813,7 +817,7 @@
 }
 
 #available-menu-items .accordion-section-title.loading .spinner,
-#available-menu-items-search.loading .accordion-section-title .spinner {
+#available-menu-items-search.loading .spinner {
 	visibility: visible;
 	margin: 0 20px;
 }
@@ -863,31 +867,21 @@
 }
 
 #available-menu-items-search input {
+	width: 100%;
+	margin: 13px 0;
 	padding: 6px 10px;
-	width: 100%;
 }
 
-#available-menu-items-search .accordion-section-title {
-	padding: 12px 15px;
-	-webkit-box-sizing: border-box;
-	-moz-box-sizing: border-box;
-	box-sizing: border-box;
-}
-
-#available-menu-items-search .accordion-section-title:after {
-	display: none;
-}
-
 #available-menu-items-search .accordion-section-content:empty {
 	min-height: 0;
 	padding: 0;
 }
 
-#available-menu-items-search.loading .accordion-section-content div {
-	opacity: .5;
+#available-menu-items-search.loading .accordion-section-content {
+	opacity: .25;
 }
 
-#available-menu-items-search.loading.loading-more .accordion-section-content div {
+#available-menu-items-search.loading.loading-more .accordion-section-content {
 	opacity: 1;
 }
 
@@ -1037,10 +1031,6 @@
 	margin-top: 12px;
 }
 
-#available-menu-items .customize-section-title {
-	display: none;
-}
-
 @media screen and ( max-width: 640px ) {
 	body.adding-menu-items div#available-menu-items {
 		top: 46px;
Index: src/wp-admin/customize.php
===================================================================
--- src/wp-admin/customize.php	(revision 33589)
+++ src/wp-admin/customize.php	(working copy)
@@ -152,7 +152,7 @@
 					<span class="preview-notice"><?php
 						echo sprintf( __( 'You are customizing %s' ), '<strong class="panel-title site-title">' . get_bloginfo( 'name' ) . '</strong>' );
 					?></span>
-					<button class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button>
+					<button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button>
 				</div>
 				<div class="customize-panel-description"><?php
 					_e( 'The Customizer allows you to preview changes to your site before publishing them. You can also navigate to different pages on your site to preview them.' );
Index: src/wp-admin/js/customize-controls.js
===================================================================
--- src/wp-admin/js/customize-controls.js	(revision 33589)
+++ src/wp-admin/js/customize-controls.js	(working copy)
@@ -1124,7 +1124,7 @@
 			var meta, panel = this;
 
 			// Expand/Collapse accordion sections on click.
-			panel.container.find( '.accordion-section-title' ).on( 'click keydown', function( event ) {
+			panel.container.find( '.accordion-section-title' ).not( '.customize-info .accordion-section-title' ).on( 'click keydown', function( event ) {
 				if ( api.utils.isKeydownButNotEnterEvent( event ) ) {
 					return;
 				}
@@ -1149,11 +1149,7 @@
 
 			meta = panel.container.find( '.panel-meta:first' );
 
-			meta.find( '> .accordion-section-title .customize-help-toggle' ).on( 'click keydown', function( event ) {
-				if ( api.utils.isKeydownButNotEnterEvent( event ) ) {
-					return;
-				}
-				event.preventDefault(); // Keep this AFTER the key filter above
+			meta.find( '.customize-help-toggle' ).on( 'click', function() {
 
 				meta = panel.container.find( '.panel-meta' );
 				if ( meta.hasClass( 'cannot-expand' ) ) {
@@ -1231,7 +1227,8 @@
 				overlay = section.closest( '.wp-full-overlay' ),
 				container = section.closest( '.wp-full-overlay-sidebar-content' ),
 				siblings = container.find( '.open' ),
-				topPanel = overlay.find( '#customize-theme-controls > ul > .accordion-section > .accordion-section-title' ),
+				// Get the accordion sections but not the Active Theme section, we don't need to set tabindex there.
+				topPanel = overlay.find( '#customize-theme-controls > ul > .accordion-section:not(.control-section-themes) > .accordion-section-title' ),
 				backBtn = section.find( '.customize-panel-back' ),
 				panelTitle = section.find( '.accordion-section-title' ).first(),
 				content = section.find( '.control-panel-content' );
@@ -3059,11 +3056,7 @@
 		});
 
 		// Expand/Collapse the main customizer customize info.
-		$( '.customize-info' ).find( '> .accordion-section-title .customize-help-toggle' ).on( 'click keydown', function( event ) {
-			if ( api.utils.isKeydownButNotEnterEvent( event ) ) {
-				return;
-			}
-			event.preventDefault(); // Keep this AFTER the key filter above
+		$( '.customize-info' ).find( '.customize-help-toggle' ).on( 'click', function() {
 
 			var section = $( this ).closest( '.accordion-section' ),
 				content = section.find( '.customize-panel-description:first' );
Index: src/wp-admin/js/customize-nav-menus.js
===================================================================
--- src/wp-admin/js/customize-nav-menus.js	(revision 33589)
+++ src/wp-admin/js/customize-nav-menus.js	(working copy)
@@ -138,15 +138,8 @@
 			} );
 
 			// Clear the search results.
-			$( '.clear-results' ).on( 'click keydown', function( event ) {
-				if ( event.type === 'keydown' && ( 13 !== event.which && 32 !== event.which ) ) { // "return" or "space" keys only
-					return;
-				}
-
-				event.preventDefault();
-
+			$( '.clear-results' ).on( 'click', function( event ) {
 				$( '#menu-items-search' ).val( '' ).focus();
-				event.target.value = '';
 				self.search( event );
 			} );
 
@@ -202,17 +195,13 @@
 				$otherSections.fadeOut( 100 );
 				$searchSection.find( '.accordion-section-content' ).slideDown( 'fast' );
 				$searchSection.addClass( 'open' );
-				$searchSection.find( '.clear-results' )
-					.prop( 'tabIndex', 0 )
-					.addClass( 'is-visible' );
+				$searchSection.find( '.clear-results' ).addClass( 'is-visible' );
 			} else if ( '' === event.target.value ) {
 				$searchSection.removeClass( 'open' );
 				$otherSections.show();
-				$searchSection.find( '.clear-results' )
-					.prop( 'tabIndex', -1 )
-					.removeClass( 'is-visible' );
+				$searchSection.find( '.clear-results' ).removeClass( 'is-visible' );
 			}
-			
+
 			this.searchTerm = event.target.value;
 			this.pages.search = 1;
 			this.doSearch( 1 );
@@ -362,11 +351,13 @@
 
 		// Adjust the height of each section of items to fit the screen.
 		itemSectionHeight: function() {
-			var sections, totalHeight, accordionHeight, diff;
+			var sections, totalHeight, accordionHeight, searchHeight, diff;
 			totalHeight = window.innerHeight;
-			sections = this.$el.find( '.accordion-section-content' );
+			searchHeight = this.$el.find( '#available-menu-items-search' ).outerHeight();
+			// Get only the actual accordions, exclude the search div.
+			sections = this.$el.find( '.accordion-container .accordion-section-content' );
 			accordionHeight =  46 * ( 1 + sections.length ) - 16; // Magic numbers.
-			diff = totalHeight - accordionHeight;
+			diff = totalHeight - accordionHeight - searchHeight;
 			if ( 120 < diff && 290 > diff ) {
 				sections.css( 'max-height', diff );
 			}
Index: src/wp-includes/class-wp-customize-nav-menus.php
===================================================================
--- src/wp-includes/class-wp-customize-nav-menus.php	(revision 33589)
+++ src/wp-includes/class-wp-customize-nav-menus.php	(working copy)
@@ -697,83 +697,69 @@
 	 */
 	public function available_items_template() {
 		?>
-		<div id="available-menu-items" class="accordion-container">
-			<div class="customize-section-title">
-				<button type="button" class="customize-section-back" tabindex="-1">
-					<span class="screen-reader-text"><?php _e( 'Back' ); ?></span>
-				</button>
-				<h3>
-					<span class="customize-action">
-						<?php
-							/* translators: &#9656; is the unicode right-pointing triangle, and %s is the section title in the Customizer */
-							printf( __( 'Customizing &#9656; %s' ), esc_html( $this->manager->get_panel( 'nav_menus' )->title ) );
-						?>
-					</span>
-					<?php _e( 'Add Menu Items' ); ?>
-				</h3>
-			</div>
+		<div id="available-menu-items">
 			<div id="available-menu-items-search" class="accordion-section cannot-expand">
-				<div class="accordion-section-title">
-					<label class="screen-reader-text" for="menu-items-search"><?php _e( 'Search Menu Items' ); ?></label>
-					<input type="text" id="menu-items-search" placeholder="<?php esc_attr_e( 'Search menu items&hellip;' ) ?>" aria-describedby="menu-items-search-desc" />
-					<p class="screen-reader-text" id="menu-items-search-desc"><?php _e( 'The search results will be updated as you type.' ); ?></p>
-					<span class="spinner"></span>
-					<span class="clear-results"><span class="screen-reader-text"><?php _e( 'Clear Results' ); ?></span></span>
-				</div>
+				<label class="screen-reader-text" for="menu-items-search"><?php _e( 'Search Menu Items' ); ?></label>
+				<input type="text" id="menu-items-search" placeholder="<?php esc_attr_e( 'Search menu items&hellip;' ) ?>" aria-describedby="menu-items-search-desc" />
+				<p class="screen-reader-text" id="menu-items-search-desc"><?php _e( 'The search results will be updated as you type.' ); ?></p>
+				<span class="spinner"></span>
+				<button type="button" class="clear-results not-a-button"><span class="screen-reader-text"><?php _e( 'Clear Results' ); ?></span></button>
 				<ul class="accordion-section-content" data-type="search"></ul>
 			</div>
-			<div id="new-custom-menu-item" class="accordion-section">
-				<h4 class="accordion-section-title" role="presentation">
-					<?php _e( 'Custom Links' ); ?>
-					<button type="button" class="not-a-button" aria-expanded="false">
-						<span class="screen-reader-text"><?php _e( 'Toggle section: Custom Links' ); ?></span>
-						<span class="toggle-indicator" aria-hidden="true"></span>
-					</button>
-				</h4>
-				<div class="accordion-section-content">
-					<input type="hidden" value="custom" id="custom-menu-item-type" name="menu-item[-1][menu-item-type]" />
-					<p id="menu-item-url-wrap">
-						<label class="howto" for="custom-menu-item-url">
-							<span><?php _e( 'URL' ); ?></span>
-							<input id="custom-menu-item-url" name="menu-item[-1][menu-item-url]" type="text" class="code menu-item-textbox" value="http://">
-						</label>
-					</p>
-					<p id="menu-item-name-wrap">
-						<label class="howto" for="custom-menu-item-name">
-							<span><?php _e( 'Link Text' ); ?></span>
-							<input id="custom-menu-item-name" name="menu-item[-1][menu-item-title]" type="text" class="regular-text menu-item-textbox">
-						</label>
-					</p>
-					<p class="button-controls">
-						<span class="add-to-menu">
-							<input type="submit" class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-custom-menu-item" id="custom-menu-item-submit">
-							<span class="spinner"></span>
-						</span>
-					</p>
-				</div>
-			</div>
-			<?php
-			// Containers for per-post-type item browsing; items added with JS.
-			foreach ( $this->available_item_types() as $available_item_type ) {
-				$id = sprintf( 'available-menu-items-%s-%s', $available_item_type['type'], $available_item_type['object'] );
-				?>
-				<div id="<?php echo esc_attr( $id ); ?>" class="accordion-section">
+			<div class="accordion-container">
+				<div id="new-custom-menu-item" class="accordion-section">
 					<h4 class="accordion-section-title" role="presentation">
-						<?php echo esc_html( $available_item_type['title'] ); ?>
-						<span class="spinner"></span>
-						<span class="no-items"><?php _e( 'No items' ); ?></span>
+						<?php _e( 'Custom Links' ); ?>
 						<button type="button" class="not-a-button" aria-expanded="false">
-							<span class="screen-reader-text"><?php
-							/* translators: %s: Title of a section with menu items */
-							printf( __( 'Toggle section: %s' ), esc_html( $available_item_type['title'] ) ); ?></span>
+							<span class="screen-reader-text"><?php _e( 'Toggle section: Custom Links' ); ?></span>
 							<span class="toggle-indicator" aria-hidden="true"></span>
 						</button>
 					</h4>
-					<ul class="accordion-section-content" data-type="<?php echo esc_attr( $available_item_type['type'] ); ?>" data-object="<?php echo esc_attr( $available_item_type['object'] ); ?>"></ul>
+					<div class="accordion-section-content">
+						<input type="hidden" value="custom" id="custom-menu-item-type" name="menu-item[-1][menu-item-type]" />
+						<p id="menu-item-url-wrap">
+							<label class="howto" for="custom-menu-item-url">
+								<span><?php _e( 'URL' ); ?></span>
+								<input id="custom-menu-item-url" name="menu-item[-1][menu-item-url]" type="text" class="code menu-item-textbox" value="http://">
+							</label>
+						</p>
+						<p id="menu-item-name-wrap">
+							<label class="howto" for="custom-menu-item-name">
+								<span><?php _e( 'Link Text' ); ?></span>
+								<input id="custom-menu-item-name" name="menu-item[-1][menu-item-title]" type="text" class="regular-text menu-item-textbox">
+							</label>
+						</p>
+						<p class="button-controls">
+							<span class="add-to-menu">
+								<input type="submit" class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-custom-menu-item" id="custom-menu-item-submit">
+								<span class="spinner"></span>
+							</span>
+						</p>
+					</div>
 				</div>
 				<?php
-			}
-			?>
+				// Containers for per-post-type item browsing; items added with JS.
+				foreach ( $this->available_item_types() as $available_item_type ) {
+					$id = sprintf( 'available-menu-items-%s-%s', $available_item_type['type'], $available_item_type['object'] );
+					?>
+					<div id="<?php echo esc_attr( $id ); ?>" class="accordion-section">
+						<h4 class="accordion-section-title" role="presentation">
+							<?php echo esc_html( $available_item_type['title'] ); ?>
+							<span class="spinner"></span>
+							<span class="no-items"><?php _e( 'No items' ); ?></span>
+							<button type="button" class="not-a-button" aria-expanded="false">
+								<span class="screen-reader-text"><?php
+								/* translators: %s: Title of a section with menu items */
+								printf( __( 'Toggle section: %s' ), esc_html( $available_item_type['title'] ) ); ?></span>
+								<span class="toggle-indicator" aria-hidden="true"></span>
+							</button>
+						</h4>
+						<ul class="accordion-section-content" data-type="<?php echo esc_attr( $available_item_type['type'] ); ?>" data-object="<?php echo esc_attr( $available_item_type['object'] ); ?>"></ul>
+					</div>
+					<?php
+				}
+				?>
+			</div><!-- .accordion-container -->
 		</div><!-- #available-menu-items -->
 	<?php
 	}
Index: src/wp-includes/class-wp-customize-panel.php
===================================================================
--- src/wp-includes/class-wp-customize-panel.php	(revision 33589)
+++ src/wp-includes/class-wp-customize-panel.php	(working copy)
@@ -372,7 +372,7 @@
 					/* translators: %s is the site/panel title in the Customizer */
 					echo sprintf( __( 'You are customizing %s' ), '<strong class="panel-title">{{ data.title }}</strong>' );
 				?></span>
-				<button class="customize-help-toggle dashicons dashicons-editor-help" tabindex="0" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button>
+				<button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button>
 			</div>
 			<# if ( data.description ) { #>
 				<div class="description customize-panel-description">
