Index: wp-admin/includes/dashboard.php
===================================================================
--- wp-admin/includes/dashboard.php	(revision 21693)
+++ wp-admin/includes/dashboard.php	(working copy)
@@ -503,9 +503,9 @@
 ?>
 
 	<form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press">
-		<h4 id="quick-post-title"><label for="title"><?php _e('Title') ?></label></h4>
 		<div class="input-text-wrap">
-			<input type="text" name="post_title" id="title" autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" />
+			<label class="screen-reader-text" for="title"><?php _e( 'Enter title here' ); ?></label>
+			<input type="text" name="post_title" id="title" placeholder="<?php esc_attr_e( 'Enter title here' ) ?>" autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" />
 		</div>
 
 		<?php if ( current_user_can( 'upload_files' ) ) : ?>
@@ -514,16 +514,16 @@
 		</div>
 		<?php endif; ?>
 
-		<h4 id="content-label"><label for="content"><?php _e('Content') ?></label></h4>
 		<div class="textarea-wrap">
+			<label class="screen-reader-text" for="content"><?php _e( 'Content' ); ?></label>
 			<textarea name="content" id="content" class="mceEditor" rows="3" cols="15"><?php echo esc_textarea( $post->post_content ); ?></textarea>
 		</div>
 
 		<script type="text/javascript">edCanvas = document.getElementById('content');edInsertContent = null;</script>
 
-		<h4><label for="tags-input"><?php _e('Tags') ?></label></h4>
 		<div class="input-text-wrap">
-			<input type="text" name="tags_input" id="tags-input" value="<?php echo get_tags_to_edit( $post->ID ); ?>" />
+			<label class="screen-reader-text" for="tags-input"><?php _e( 'Tags (separate with commas)' ); ?></label>
+			<input type="text" name="tags_input" id="tags-input" placeholder="<?php esc_attr_e( 'Tags (separate with commas)' ) ?>" value="<?php echo get_tags_to_edit( $post->ID ); ?>" />
 		</div>
 
 		<p class="submit">
Index: wp-admin/css/wp-admin.css
===================================================================
--- wp-admin/css/wp-admin.css	(revision 21693)
+++ wp-admin/css/wp-admin.css	(working copy)
@@ -6018,27 +6018,19 @@
 }
 
 /* QuickPress */
-#dashboard_quick_press h4 {
-	font-family: sans-serif;
-	float: left;
-	width: 5em;
-	clear: both;
-	font-weight: normal;
-	text-align: right;
-	font-size: 12px;
+#dashboard_quick_press #title {
+	padding: 1px 5px;
+	font-size: 1.5em;
+	line-height: 100%;
 }
 
-#dashboard_quick_press h4 label {
-	margin-right: 10px;
-}
-
 #dashboard_quick_press .input-text-wrap,
 #dashboard_quick_press .textarea-wrap {
-	margin: 0 0 1em 5em;
+	margin: 0 0 1em 0;
 }
 
 #dashboard_quick_press .wp-media-buttons {
-	margin: 0 0 .5em 5em;
+	margin: 0 0 .5em 0;
 	padding: 0;
 }
 
@@ -6046,16 +6038,12 @@
 	color: #777;
 }
 
-#dashboard-widgets #dashboard_quick_press form p.submit {
-	margin-left: 4.6em;
-}
-
 #dashboard-widgets #dashboard_quick_press form p.submit input {
 	float: left;
 }
 
 #dashboard-widgets #dashboard_quick_press form p.submit #save-post {
-	margin: 0 1em 0 10px;
+	margin: 0 1em 0 0;
 }
 
 #dashboard-widgets #dashboard_quick_press form p.submit #publish {
Index: wp-admin/css/wp-admin-rtl.css
===================================================================
--- wp-admin/css/wp-admin-rtl.css	(revision 21693)
+++ wp-admin/css/wp-admin-rtl.css	(working copy)
@@ -1850,41 +1850,12 @@
 }
 
 /* QuickPress */
-#dashboard_quick_press h4 {
-	float: right;
-	text-align: left;
-}
-
-#dashboard_quick_press .wp-media-buttons {
-	margin: 0 5em 0.5em 0;
-}
-
-#dashboard_quick_press h4 label {
-	margin-right: 0;
-	margin-left: 10px;
-}
-
-#dashboard_quick_press .input-text-wrap,
-#dashboard_quick_press .textarea-wrap {
-	margin: 0 5em 1em 0;
-}
-
-#dashboard_quick_press #media-buttons {
-	margin: 0 5em .5em 0;
-	padding: 0;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit {
-	margin-left: 0;
-	margin-right: 4.6em;
-}
-
 #dashboard-widgets #dashboard_quick_press form p.submit input {
 	float: right;
 }
 
 #dashboard-widgets #dashboard_quick_press form p.submit #save-post {
-	margin: 0 10px 0 1em;
+	margin: 0 0 0 1em;
 }
 
 #dashboard-widgets #dashboard_quick_press form p.submit #publish {
