Index: modules/dashboard/dashboard.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/dashboard/dashboard.css,v
retrieving revision 1.2
diff -u -r1.2 dashboard.css
--- modules/dashboard/dashboard.css	18 Oct 2009 11:20:26 -0000	1.2
+++ modules/dashboard/dashboard.css	15 Nov 2009 03:43:39 -0000
@@ -22,7 +22,6 @@
 }
 
 #dashboard div.block h2 {
-  background-color:#e2e1dc;
   padding: 3px 5px;
 }
 
@@ -42,31 +41,29 @@
   -moz-border-radius: 4px;
 }
 
+
+
 #dashboard .ui-sortable {
-  border: 3px dashed #ccc;
+  border: #E0E0D8 2px solid;
   padding: 10px;
 }
 
 #dashboard .canvas-content {
-  background-color: #4d4d4d;
-  padding: 10px;
-  color: #fff;
+  margin: 0 0 10px 0;
 }
 
 #dashboard .canvas-content a {
-  color: #fff;
   text-decoration: underline;
 }
 
 #dashboard #disabled-blocks .ui-sortable {
   padding: 0;
-  background-color: #4d4d4d;
   border: 0;
 }
 
 #dashboard .canvas-content input {
-  float: right;
   margin: 0 0 0 10px;
+  clear: both;
 }
 
 #dashboard .region {
@@ -74,8 +71,9 @@
 }
 
 #dashboard #disabled-blocks .section {
-  margin: 0 7em 0 0;
-  height: 100px;
+  background-color: #E0E0D8;
+  padding: 10px;
+  min-height: 60px;
   overflow: auto;
 }
 #dashboard #disabled-blocks {
@@ -90,15 +88,29 @@
   display: inline;
   font-weight: normal;
   white-space: nowrap;
-  color: #000;
+}
+
+#dashboard #disabled-blocks .block {
+  background: #444;
+  color: #fff;
 }
 
 #dashboard #disabled-blocks .block .content, #dashboard .ui-sortable-helper .content {
   display: none;
 }
 
+#dashboard #disabled-blocks .block:hover {
+  background: #0074BD url(/misc/grippie.png) no-repeat center bottom;
+}
+
 #dashboard .ui-sortable .block {
   cursor: move;
+  background: #EFEFEB;
+}
+
+#dashboard .ui-sortable .block:hover {
+  cursor: move;
+  background-image: url(/misc/grippie.png) no-repeat center bottom;
 }
 
 #dashboard .dashboard-region .block-placeholder {
Index: modules/dashboard/dashboard.js
===================================================================
RCS file: /cvs/drupal/drupal/modules/dashboard/dashboard.js,v
retrieving revision 1.2
diff -u -r1.2 dashboard.js
--- modules/dashboard/dashboard.js	18 Oct 2009 11:20:26 -0000	1.2
+++ modules/dashboard/dashboard.js	15 Nov 2009 03:43:39 -0000
@@ -65,8 +65,8 @@
    * Helper for enterCustomizeMode; sets up drag-and-drop and close button.
    */
   setupDrawer: function () {
-    $('div.customize .canvas-content').prepend('<input type="button" class="form-submit" value="' + Drupal.t('Done') + '"></input>');
-    $('div.customize .canvas-content input').click(Drupal.behaviors.dashboard.exitCustomizeMode);
+   $('div.customize .canvas-content').append('<input type="button" class="form-submit" value="' + Drupal.t('Done') + '"></input>');
+   $('div.customize .canvas-content input').click(Drupal.behaviors.dashboard.exitCustomizeMode);
 
     // Initialize drag-and-drop.
     var regions = $('#dashboard div.region');
@@ -76,7 +76,7 @@
       cursorAt: {top:0},
       dropOnEmpty: true,
       items: '>div.block, div.disabled-block',
-      opacity: 0.8,
+      opacity: 1,
       helper: 'block-dragging',
       placeholder: 'block-placeholder clearfix',
       start: Drupal.behaviors.dashboard.start,
Index: modules/dashboard/dashboard.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/dashboard/dashboard.module,v
retrieving revision 1.5
diff -u -r1.5 dashboard.module
--- modules/dashboard/dashboard.module	11 Nov 2009 08:52:27 -0000	1.5
+++ modules/dashboard/dashboard.module	15 Nov 2009 03:43:39 -0000
@@ -415,7 +415,7 @@
  */
 function theme_dashboard_disabled_blocks($variables) {
   extract($variables);
-  $output = '<div class="canvas-content"><p>' . t('Drag and drop dashboard blocks to their place. Changes are automatically saved. You can also <a href="@add-block">add a custom block</a>.', array('@add-block' => url('admin/structure/block/add', array('query' => array('destination' => 'admin/dashboard/customize'))))) . '</p>';
+  $output = '<div class="canvas-content"><p>' . t('Drag and drop these to the columns below. Changes are automatically saved.') . '</p>';
   $output .= '<div id="disabled-blocks"><div class="section region disabled-blocks clearfix">';
   foreach ($blocks as $block) {
     $output .= theme('dashboard_disabled_block', array('block' => $block));
