This is a great module. It needs more love. I tried out the dev snapshot and found that it has a small bug in its html, so that not only it's not modular but also its height is out of control. But the fix is easy.

1) Change the lines 237-238 in module_filter.module from this

$output .= '

'. drupal_render($form['module_filter']);
$output .= theme('table', $header, $rows, array('id' => 'projects')) .'

';

to this

$output .= '

';
$output .= theme('table', $header, $rows, array('id' => 'projects')) .'

';

Then add this into line 233

$output .= '

'. drupal_render($form['module_filter']) . '

';

I'd submit a patch but I don't know how to make those things. :-)

Comments

picardo’s picture

Whoops. It looks like removing the

is now causing a side effect when I tested it in the Admin theme. Its width exceeds its container. Here is the correct code for the 237-238
  $output .= '<div id="module-filter-right"><div id="module-filter-squeeze">';
  $output .= theme('table', $header, $rows, array('id' => 'projects')) .'</div></div>';
greenskin’s picture

Status: Needs review » Fixed

Fixed with keeping the input where it was.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.