### Eclipse Workspace Patch 1.0
#P Drupal7
Index: modules/block/block-admin-display-form.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block-admin-display-form.tpl.php,v
retrieving revision 1.6
diff -u -r1.6 block-admin-display-form.tpl.php
--- modules/block/block-admin-display-form.tpl.php	15 May 2008 21:30:02 -0000	1.6
+++ modules/block/block-admin-display-form.tpl.php	16 Apr 2009 13:35:15 -0000
@@ -45,8 +45,8 @@
   <tbody>
     <?php $row = 0; ?>
     <?php foreach ($block_regions as $region => $title): ?>
-      <tr class="region region-<?php print $region?>">
-        <td colspan="5" class="region"><?php print $title; ?></td>
+      <tr class="region region-<?php print $region?> <?php if ($row == 0): print 'first-region'; endif; ?>">
+        <td colspan="5" class="region"><span><?php print $title; ?></span></td>
       </tr>
       <tr class="region-message region-<?php print $region?>-message <?php print empty($block_listing[$region]) ? 'region-empty' : 'region-populated'; ?>">
         <td colspan="5"><em><?php print t('No blocks in this region'); ?></em></td>
Index: modules/system/system.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.css,v
retrieving revision 1.54
diff -u -r1.54 system.css
--- modules/system/system.css	11 Apr 2009 22:19:45 -0000	1.54
+++ modules/system/system.css	16 Apr 2009 13:35:16 -0000
@@ -375,6 +375,22 @@
 /*
 ** Table drag and drop.
 */
+table.tabledrag-processed tr.region td.region {
+	border:0;
+	padding:0;
+	vertical-align:bottom;
+	background-color:#fff;
+}
+table.tabledrag-processed tr.region td.region span {
+	display:block; 
+	margin-top:1.5em; 
+	padding: 0.42em 1.5em 0.42em 0.5em; 
+	background-color:#D4E7F3;
+}
+table.tabledrag-processed tr.first-region td.region span {
+	margin-top:0;
+	padding: 0.2em 1.5em 0.3em 0.5em; /* LTR */
+}
 .draggable a.tabledrag-handle {
   cursor: move;
   float: left; /* LTR */