Index: wp-admin/includes/template.php
===================================================================
--- wp-admin/includes/template.php	(revision 20104)
+++ wp-admin/includes/template.php	(working copy)
@@ -1282,10 +1282,10 @@
  *
  * @param unknown_type $found_action
  */
-function find_posts_div($found_action = '') {
+function find_posts_div( $found_action = '' ) {
 ?>
 	<div id="find-posts" class="find-box" style="display:none;">
-		<div id="find-posts-head" class="find-box-head"><?php _e('Find Posts or Pages'); ?></div>
+		<div id="find-posts-head" class="find-box-head"><?php _e( 'Find Posts' ); ?></div>
 		<div class="find-box-inside">
 			<div class="find-box-search">
 				<?php if ( $found_action ) { ?>
@@ -1296,23 +1296,32 @@
 				<?php wp_nonce_field( 'find-posts', '_ajax_nonce', false ); ?>
 				<label class="screen-reader-text" for="find-posts-input"><?php _e( 'Search' ); ?></label>
 				<input type="text" id="find-posts-input" name="ps" value="" />
-				<input type="button" id="find-posts-search" value="<?php esc_attr_e( 'Search' ); ?>" class="button" /><br />
+				<input type="button" id="find-posts-search" value="<?php esc_attr_e( 'Search' ); ?>" class="button" />
 
 				<?php
-				$post_types = get_post_types( array('public' => true), 'objects' );
-				foreach ( $post_types as $post ) {
-					if ( 'attachment' == $post->name )
-						continue;
+				$post_types = get_post_types( array( 'show_ui' => true ), 'objects' );
+				$post_types = apply_filters( 'find_posts_div_posttypes', $post_types );
+
+				if( count( $post_types ) > 0 ) {
+					$post_type_current = reset( $post_types )->name;
+
+					echo '<p>';
+					foreach ( $post_types as $post_type ) {
+						if( current_user_can( $post_type->cap->edit_posts ) ) {
+						?>
+						<input type="radio" name="find-posts-what" id="find-posts-<?php echo esc_attr( $post_type->name ); ?>" value="<?php echo esc_attr( $post_type->name ); ?>" <?php checked( $post_type->name, $post_type_current ); ?> />
+						<label for="find-posts-<?php echo esc_attr( $post_type->name ); ?>"><?php echo $post_type->label; ?></label>
+						<?php
+						}
+					}
+					echo '</p>';
+				}
 				?>
-				<input type="radio" name="find-posts-what" id="find-posts-<?php echo esc_attr($post->name); ?>" value="<?php echo esc_attr($post->name); ?>" <?php checked($post->name, 'post'); ?> />
-				<label for="find-posts-<?php echo esc_attr($post->name); ?>"><?php echo $post->label; ?></label>
-				<?php
-				} ?>
 			</div>
 			<div id="find-posts-response"></div>
 		</div>
 		<div class="find-box-buttons">
-			<input id="find-posts-close" type="button" class="button alignleft" value="<?php esc_attr_e('Close'); ?>" />
+			<input id="find-posts-close" type="button" class="button alignleft" value="<?php esc_attr_e( 'Close' ); ?>" />
 			<?php submit_button( __( 'Select' ), 'button-primary alignright', 'find-posts-submit', false ); ?>
 		</div>
 	</div>
Index: wp-admin/css/wp-admin.dev.css
===================================================================
--- wp-admin/css/wp-admin.dev.css	(revision 20104)
+++ wp-admin/css/wp-admin.dev.css	(working copy)
@@ -3936,6 +3936,11 @@
 	padding: 33px 5px 40px;
 	position: absolute;
 	z-index: 1000;
+
+	border: 1px solid #e5e5e5;
+	-moz-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
+	-webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
+	box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
 }
 
 .find-box-head {
@@ -3956,11 +3961,15 @@
 }
 
 .find-box-search {
-	padding: 12px;
+	padding: 12px 12px 6px 12px;
 	border-width: 1px;
 	border-style: none none solid;
 }
 
+.find-box-search p {
+	margin: 0.5em 0 0 1px;
+}
+
 #find-posts-response {
 	margin: 8px 0;
 	padding: 0 1px;
