Index: l10n_community/translate.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/l10n_server/l10n_community/Attic/translate.inc,v
retrieving revision 1.1.2.7.2.31
diff -u -r1.1.2.7.2.31 translate.inc
--- l10n_community/translate.inc	25 Jan 2010 20:43:32 -0000	1.1.2.7.2.31
+++ l10n_community/translate.inc	9 Feb 2010 10:54:08 -0000
@@ -525,9 +525,42 @@
   $labels[] = '';
   // Display the rest of the form in the last cell
   $row[] = array('data' => drupal_render($form), 'class' => 'last');
-  return theme('table', $labels, array($row), array('class' => 'l10n-server-filter'));
+  return theme('l10n_community_filter', $labels, array($row), array('class' => 'l10n-server-filter clear-block'));
 }
 
+function theme_l10n_community_filter($labels, $row, $attributes = array()) {
+ 
+
+  $output = '<div'. drupal_attributes($attributes) .'>';
+  $i = 0;
+
+  foreach ($row as $number => $value) {
+    foreach ($value as $filter) {
+
+      $output .= '<div class="widget">';  
+      $output .= "<label>$labels[$i]</label>";
+
+      if (is_array($filter)) {
+        $filter = isset($filter['data']) ? $filter['data'] : '';
+      }
+
+      $output .= $filter;
+      $output .= " </div>";
+
+      $i++;
+    }
+  }
+
+  $output .= "</div>";
+  return $output;
+}
+
 /**
  * Theme function for l10n_community_translate_form.
  */
Index: l10n_community/l10n_community.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/l10n_server/l10n_community/Attic/l10n_community.css,v
retrieving revision 1.1.2.10.2.6
diff -u -r1.1.2.10.2.6 l10n_community.css
--- l10n_community/l10n_community.css	10 Sep 2009 09:15:03 -0000	1.1.2.10.2.6
+++ l10n_community/l10n_community.css	9 Feb 2010 10:54:08 -0000
@@ -206,3 +206,16 @@
 .l10n-community-string .original {
   display:none;
 }
+.l10n-server-filter label{
+  font-weight:bold;
+  color:#003150;
+}
+.l10n-server-filter .widget{
+  float:left; 
+  padding:0 1em 0 0; 
+  height:86px;
+}
+
+.l10n-server-filter .form-item {
+  margin-top:0
+}
\ No newline at end of file
Index: l10n_community/l10n_community.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/l10n_server/l10n_community/Attic/l10n_community.module,v
retrieving revision 1.1.2.23.2.66
diff -u -r1.1.2.23.2.66 l10n_community.module
--- l10n_community/l10n_community.module	25 Jan 2010 20:43:32 -0000	1.1.2.23.2.66
+++ l10n_community/l10n_community.module	9 Feb 2010 10:54:08 -0000
@@ -1254,6 +1254,9 @@
     'l10n_community_in_context' => array(
       'arguments' => array('source' => NULL),
     ),
+    'l10n_community_filter' => array(
+      'arguments' => array('form' => NULL),
+    ),   
     // l10n_community.admin.inc
     'l10n_community_admin_projects_form' => array(
       'arguments' => array('form' => NULL),