Index: src/includes/admin/styles/_admin.scss
===================================================================
--- src/includes/admin/styles/_admin.scss	(revision 5339)
+++ src/includes/admin/styles/_admin.scss	(working copy)
@@ -31,11 +31,11 @@
 /* Forms */
 
 input[type=checkbox]:checked:before {
-    color: $form-checked;
+	color: $form-checked;
 }
 
 input[type=radio]:checked:before {
-    background: $form-checked;
+	background: $form-checked;
 }
 
 .wp-core-ui input[type="reset"]:hover,
@@ -386,6 +386,7 @@
 
 .wp-pointer .wp-pointer-content h3 {
 	background-color: $highlight-color;
+	border-color: darken( $highlight-color, 5% );
 }
 
 .wp-pointer .wp-pointer-content h3:before {
@@ -432,6 +433,45 @@
 	background: $highlight-color;
 }
 
+.theme-section.current,
+.theme-filter.current {
+	border-bottom-color: $menu-background;
+}
+
+body.more-filters-opened .more-filters,
+body.more-filters-opened .more-filters:before {
+	color: $menu-text;
+	background-color: $menu-background;
+}
+
+body.more-filters-opened .more-filters:hover,
+body.more-filters-opened .more-filters:focus,
+body.more-filters-opened .more-filters:hover:before,
+body.more-filters-opened .more-filters:focus:before {
+	background-color: $menu-highlight-background;
+	color: $menu-highlight-text;
+}
+
+/* Widgets */
+
+.widgets-chooser li.widgets-chooser-selected {
+	background-color: $menu-highlight-background;
+	color: $menu-highlight-text;
+}
+
+.widgets-chooser li.widgets-chooser-selected:before,
+.widgets-chooser li.widgets-chooser-selected:focus:before {
+	color: $menu-highlight-text;
+}
+
+/* Customize */
+
+#customize-theme-controls .widget-area-select .selected {
+	background-color: $menu-highlight-background;
+	color: $menu-highlight-text;
+}
+
+
 /* jQuery UI Slider */
 
 .wp-slider .ui-slider-handle,
@@ -439,7 +479,6 @@
 .wp-slider .ui-slider-handle.focus {
 	background: $button-color;
 	border-color: darken( $button-color, 10% );
-	-webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
 	box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
 }
 
Index: src/includes/admin/styles/_mixins.scss
===================================================================
--- src/includes/admin/styles/_mixins.scss	(revision 5339)
+++ src/includes/admin/styles/_mixins.scss	(working copy)
@@ -1,5 +1,5 @@
 /*
- * Button mixin- creates 3d-ish button effect with correct 
+ * Button mixin- creates 3d-ish button effect with correct
  * highlights/shadows, based on a base color.
  */
 @mixin button( $button-color, $text-color: white ) {
@@ -6,7 +6,6 @@
 	background: $button-color;
 	border-color: darken( $button-color, 10% );
 	color: $text-color;
-	-webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
 	box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
 
 	&:hover,
@@ -14,7 +13,6 @@
 		background: darken( $button-color, 5% );
 		border-color: darken( $button-color, 15% );
 		color: $text-color;
-		-webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15);
 		box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15);
 	}
 
@@ -22,13 +20,13 @@
 		background: darken( $button-color, 10% );
 		border-color: darken( $button-color, 15% );
 		color: $text-color;
-		-webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
 	 	box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
 	}
 
 	&[disabled],
 	&:disabled,
-	&.button-primary-disabled {
+	&.button-primary-disabled,
+	&.disabled {
 		color: hsl( hue( $button-color ), 10%, 80% ) !important;
 		background: darken( $button-color, 8% ) !important;
 		border-color: darken( $button-color, 15% ) !important;
