diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-25 09:01:12 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-25 09:01:12 +0000 |
commit | 554a2808a3f337c5a3d578e9b53e6009f1491da6 (patch) | |
tree | 06f55647128bac3e52c28390232d53569a959f2d /modules/node/node.module | |
parent | 6ea9204889915f098fa713ce8a8449bbe667b91b (diff) | |
download | brdo-554a2808a3f337c5a3d578e9b53e6009f1491da6.tar.gz brdo-554a2808a3f337c5a3d578e9b53e6009f1491da6.tar.bz2 |
#78656 by m3avrck. Drupal Core's first CSS hack.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 488cde59c..216e89a8c 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1334,7 +1334,7 @@ function theme_node_filter_form($form) { * Theme node administraton filter selector. */ function theme_node_filters($form) { - $output .= '<ul>'; + $output .= '<ul class="clear-block">'; if (sizeof($form['current'])) { foreach (element_children($form['current']) as $key) { $output .= '<li>' . drupal_render($form['current'][$key]) . '</li>'; @@ -1356,7 +1356,7 @@ function theme_node_filters($form) { $output .= '</dl>'; $output .= '<div class="container-inline" id="node-admin-buttons">'. drupal_render($form['buttons']) .'</div>'; - $output .= '</li></ul><br class="clear" />'; + $output .= '</li></ul>'; return $output; } @@ -2440,8 +2440,8 @@ function node_form_alter($form_id, &$form) { $form['advanced']['submit'] = array( '#type' => 'submit', '#value' => t('Advanced search'), - '#prefix' => '<div class="action">', - '#suffix' => '</div><br class="clear" />', + '#prefix' => '<div class="action clear-block">', + '#suffix' => '</div>', ); $form['#validate']['node_search_validate'] = array(); |