diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-18 14:28:25 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-18 14:28:25 +0000 |
commit | fb7347bc9d260193f00619fed4b9681670595dc4 (patch) | |
tree | b973e160a9d07165f2a036a32a370c064ae3015b /modules/node | |
parent | ac484c277a0ac0627561d2cac1f4ea47ab5da00b (diff) | |
download | brdo-fb7347bc9d260193f00619fed4b9681670595dc4.tar.gz brdo-fb7347bc9d260193f00619fed4b9681670595dc4.tar.bz2 |
#371231 by JohnAlbin and EclipseGC: Rename clear-block CSS class to clearfix, which is the lingo that designers use for it.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.admin.inc | 2 | ||||
-rw-r--r-- | modules/node/node.tpl.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.admin.inc b/modules/node/node.admin.inc index 9fabbf689..29005bb94 100644 --- a/modules/node/node.admin.inc +++ b/modules/node/node.admin.inc @@ -280,7 +280,7 @@ function theme_node_filter_form($form) { */ function theme_node_filters($form) { $output = ''; - $output .= '<ul class="clear-block">'; + $output .= '<ul class="clearfix">'; if (!empty($form['current'])) { foreach (element_children($form['current']) as $key) { $output .= '<li>' . drupal_render($form['current'][$key]) . '</li>'; diff --git a/modules/node/node.tpl.php b/modules/node/node.tpl.php index a5bda033a..cfa42ce6f 100644 --- a/modules/node/node.tpl.php +++ b/modules/node/node.tpl.php @@ -49,7 +49,7 @@ * @see template_preprocess_node() */ ?> -<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block"> +<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clearfix"> <?php print $picture ?> |