### Eclipse Workspace Patch 1.0
#P vendor-DRUPAL-5.1
Index: drupal-contrib/views_bulk_operations/views_bulk_operations.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/views_bulk_operations/views_bulk_operations.module,v
retrieving revision 1.12
diff -u -r1.12 views_bulk_operations.module
--- drupal-contrib/views_bulk_operations/views_bulk_operations.module	10 Aug 2007 16:39:01 -0000	1.12
+++ drupal-contrib/views_bulk_operations/views_bulk_operations.module	22 Aug 2007 18:53:09 -0000
@@ -85,6 +85,10 @@
       'type'               => MENU_CALLBACK
     );
   }
+  else {
+    // Add the CSS for this module in !$may_cache so it's only added once per request
+    drupal_add_css(drupal_get_path('module', 'views_bulk_operations') .'/views_bulk_operations.css');
+  }
   return $items;
 }
 
@@ -118,7 +122,7 @@
       $form['configure'] = array(
         '#type' => 'markup',
         '#value' => l(t('Enable or disable allowed operations'), "admin/build/views/bulk/$view->name"),
-        '#prefix' => '<div>',
+        '#prefix' => '<div id="allowed_operations_link">',
         '#suffix' => '</div>',
       );
     }
@@ -130,13 +134,12 @@
       '#title' => '',
       '#description' => t('Please select the action to perform on the selected nodes.'),
       '#options' => $options,
-      '#prefix' => '<div style="float: left">',
+      '#prefix' => '<div id="views_bulk_operations_action">',
       '#suffix' => '</div>',
     );
     $form['submit'] = array(
       '#type' => 'submit',
       '#value' => t('Execute'),
-      '#attributes' => array('style' => 'margin: 0.9em 0.5em 2em 0'),
     );
     $form['nodes'] = array(
       '#title' => '',
@@ -144,7 +147,7 @@
       '#view' => $view->name,
       '#multiple' => TRUE,
       '#embedded' => TRUE,
-      '#prefix' => '<div style="clear: both;">',
+      '#prefix' => '<div class="views_node_selector">',
       '#suffix' => '</div>',
     );
     $form['#redirect'] = FALSE;
Index: drupal-contrib/views_bulk_operations/views_bulk_operations.css
===================================================================
RCS file: drupal-contrib/views_bulk_operations/views_bulk_operations.css
diff -N drupal-contrib/views_bulk_operations/views_bulk_operations.css
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ drupal-contrib/views_bulk_operations/views_bulk_operations.css	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,20 @@
+/* $Id:$ */
+
+/*
+** definitions for bulk operation views
+*/
+
+/* Float all form elements */
+#views-bulk-operations-form div .form-item {
+  float: left;
+}
+
+/* Put some margins on the Execute button */
+#views-bulk-operations-form div .form-submit {
+  margin: 0.9em 0.5em 2em 0;
+}
+
+/* Clear the node selector */
+.views_node_selector {
+  clear: both;
+}
