summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-02-18 14:28:25 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-02-18 14:28:25 +0000
commitfb7347bc9d260193f00619fed4b9681670595dc4 (patch)
treeb973e160a9d07165f2a036a32a370c064ae3015b /themes
parentac484c277a0ac0627561d2cac1f4ea47ab5da00b (diff)
downloadbrdo-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 'themes')
-rw-r--r--themes/bluemarine/comment.tpl.php2
-rw-r--r--themes/bluemarine/page.tpl.php2
-rw-r--r--themes/chameleon/chameleon.theme2
-rw-r--r--themes/garland/block.tpl.php2
-rw-r--r--themes/garland/comment.tpl.php4
-rw-r--r--themes/garland/maintenance-page.tpl.php6
-rw-r--r--themes/garland/node.tpl.php4
-rw-r--r--themes/garland/page.tpl.php8
-rw-r--r--themes/garland/style.css2
-rw-r--r--themes/pushbutton/comment.tpl.php2
10 files changed, 17 insertions, 17 deletions
diff --git a/themes/bluemarine/comment.tpl.php b/themes/bluemarine/comment.tpl.php
index 013b0afa0..db778c819 100644
--- a/themes/bluemarine/comment.tpl.php
+++ b/themes/bluemarine/comment.tpl.php
@@ -10,7 +10,7 @@
<div class="content">
<?php print $content; ?>
<?php if ($signature): ?>
- <div class="clear-block">
+ <div class="clearfix">
<div>—</div>
<?php print $signature ?>
</div>
diff --git a/themes/bluemarine/page.tpl.php b/themes/bluemarine/page.tpl.php
index 3336e183f..5aef63aac 100644
--- a/themes/bluemarine/page.tpl.php
+++ b/themes/bluemarine/page.tpl.php
@@ -12,7 +12,7 @@
</head>
<body class="<?php print $body_classes; ?>">
- <div id="header" class="clear-block">
+ <div id="header" class="clearfix">
<?php if ($search_box) { ?><div class="search-box"><?php print $search_box ?></div><?php }; ?>
<?php if ($logo) { ?><a class="logo" href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
<?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php }; ?>
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme
index 897bdc396..31ca7df31 100644
--- a/themes/chameleon/chameleon.theme
+++ b/themes/chameleon/chameleon.theme
@@ -170,7 +170,7 @@ function chameleon_comment($comment, $node, $links = array()) {
$output .= " <h3 class=\"title\">" . l($comment->subject, $_GET['q'], array('fragment' => "comment-$comment->cid")) . "</h3>\n";
$output .= " <div class=\"content\">" . $comment->comment;
if (!empty($comment->signature)) {
- $output .= " <div class=\"clear-block\">";
+ $output .= " <div class=\"clearfix\">";
$output .= "<div>—</div>\n";
$output .= $comment->signature . "\n";
$output .= " </div>\n";
diff --git a/themes/garland/block.tpl.php b/themes/garland/block.tpl.php
index 8bbd37118..a14afe4d6 100644
--- a/themes/garland/block.tpl.php
+++ b/themes/garland/block.tpl.php
@@ -1,7 +1,7 @@
<?php
// $Id$
?>
-<div id="block-<?php print $block->module . '-' . $block->delta; ?>" class="clear-block block block-<?php print $block->module ?>">
+<div id="block-<?php print $block->module . '-' . $block->delta; ?>" class="clearfix block block-<?php print $block->module ?>">
<?php if (!empty($block->subject)): ?>
<h2><?php print $block->subject ?></h2>
diff --git a/themes/garland/comment.tpl.php b/themes/garland/comment.tpl.php
index ab68a8cf7..3f96b1e2d 100644
--- a/themes/garland/comment.tpl.php
+++ b/themes/garland/comment.tpl.php
@@ -3,7 +3,7 @@
?>
<div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print ' ' . $status; print ' ' . $zebra; ?>">
- <div class="clear-block">
+ <div class="clearfix">
<?php if ($submitted): ?>
<span class="submitted"><?php print $submitted; ?></span>
<?php endif; ?>
@@ -19,7 +19,7 @@
<div class="content">
<?php print $content ?>
<?php if ($signature): ?>
- <div class="clear-block">
+ <div class="clearfix">
<div>—</div>
<?php print $signature ?>
</div>
diff --git a/themes/garland/maintenance-page.tpl.php b/themes/garland/maintenance-page.tpl.php
index b05fc8ade..27333ad57 100644
--- a/themes/garland/maintenance-page.tpl.php
+++ b/themes/garland/maintenance-page.tpl.php
@@ -27,10 +27,10 @@
<body class="<?php print $body_classes ?>">
<!-- Layout -->
- <div id="header-region" class="clear-block"><?php print $header; ?></div>
+ <div id="header-region" class="clearfix"><?php print $header; ?></div>
<div id="wrapper">
- <div id="container" class="clear-block">
+ <div id="container" class="clearfix">
<div id="header">
<div id="logo-floater">
@@ -72,7 +72,7 @@
<?php if ($title): ?><h2><?php print $title ?></h2><?php endif; ?>
<?php print $messages; ?>
<?php print $help; ?>
- <div class="clear-block">
+ <div class="clearfix">
<?php print $content ?>
</div>
<div id="footer"><?php print $footer_message . $footer ?></div>
diff --git a/themes/garland/node.tpl.php b/themes/garland/node.tpl.php
index 99ceef887..993a0fe6f 100644
--- a/themes/garland/node.tpl.php
+++ b/themes/garland/node.tpl.php
@@ -13,11 +13,11 @@
<span class="submitted"><?php print $submitted; ?></span>
<?php endif; ?>
- <div class="content clear-block">
+ <div class="content clearfix">
<?php print $content ?>
</div>
- <div class="clear-block">
+ <div class="clearfix">
<div class="meta">
<?php if ($terms): ?>
<div class="terms"><?php print $terms ?></div>
diff --git a/themes/garland/page.tpl.php b/themes/garland/page.tpl.php
index 396c9db23..c688f4cd8 100644
--- a/themes/garland/page.tpl.php
+++ b/themes/garland/page.tpl.php
@@ -15,10 +15,10 @@
</head>
<body class="<?php print $body_classes ?>">
- <div id="header-region" class="clear-block"><?php print $header ?></div>
+ <div id="header-region" class="clearfix"><?php print $header ?></div>
<div id="wrapper">
- <div id="container" class="clear-block">
+ <div id="container" class="clearfix">
<div id="header">
<div id="logo-floater">
@@ -46,13 +46,13 @@
<div id="center"><div id="squeeze"><div class="right-corner"><div class="left-corner">
<?php print $breadcrumb; ?>
<?php if ($mission): ?><div id="mission"><?php print $mission ?></div><?php endif; ?>
- <?php if ($tabs): ?><div id="tabs-wrapper" class="clear-block"><?php endif; ?>
+ <?php if ($tabs): ?><div id="tabs-wrapper" class="clearfix"><?php endif; ?>
<?php if ($title): ?><h2<?php print $tabs ? ' class="with-tabs"' : '' ?>><?php print $title ?></h2><?php endif; ?>
<?php if ($tabs): ?><ul class="tabs primary"><?php print $tabs ?></ul></div><?php endif; ?>
<?php if ($tabs2): ?><ul class="tabs secondary"><?php print $tabs2 ?></ul><?php endif; ?>
<?php if ($show_messages && $messages): print $messages; endif; ?>
<?php print $help; ?>
- <div class="clear-block">
+ <div class="clearfix">
<?php print $content ?>
</div>
<?php print $feed_icons ?>
diff --git a/themes/garland/style.css b/themes/garland/style.css
index 0f7912629..dfde41aa2 100644
--- a/themes/garland/style.css
+++ b/themes/garland/style.css
@@ -145,7 +145,7 @@ ol.task-list li.active {
margin-right: 1em; /* LTR */
}
-fieldset ul.clear-block li {
+fieldset ul.clearfix li {
margin: 0;
padding: 0;
background-image: none;
diff --git a/themes/pushbutton/comment.tpl.php b/themes/pushbutton/comment.tpl.php
index 5e9ca7a4a..18ac9a952 100644
--- a/themes/pushbutton/comment.tpl.php
+++ b/themes/pushbutton/comment.tpl.php
@@ -10,7 +10,7 @@
<div class="content">
<?php print $content ?>
<?php if ($signature): ?>
- <div class="clear-block">
+ <div class="clearfix">
<div>—</div>
<?php print $signature ?>
</div>