summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-20 15:59:58 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-20 15:59:58 +0000
commitd281792b9a390d1cdc9dd86f8702af5e086b17ce (patch)
tree2bb7ce1a766822a751da927ca0687278d759848b /themes
parent1aee5cf42d17c2de4af7024ec8b364b7680eed8f (diff)
downloadbrdo-d281792b9a390d1cdc9dd86f8702af5e086b17ce.tar.gz
brdo-d281792b9a390d1cdc9dd86f8702af5e086b17ce.tar.bz2
#548806 by alexanderpas and yoroy: Added breadcrumbs to Seven theme.
Diffstat (limited to 'themes')
-rw-r--r--themes/seven/page.tpl.php2
-rw-r--r--themes/seven/style.css18
-rw-r--r--themes/seven/template.php1
3 files changed, 3 insertions, 18 deletions
diff --git a/themes/seven/page.tpl.php b/themes/seven/page.tpl.php
index 02ba7d9b7..cdef22120 100644
--- a/themes/seven/page.tpl.php
+++ b/themes/seven/page.tpl.php
@@ -16,7 +16,7 @@
<?php print $page_top; ?>
<div id="branding" class="clearfix">
- <div class="back-to-site"><?php print $back_to_site; ?></div>
+ <?php print $breadcrumb; ?>
<?php if ($title): ?><h1 class="page-title"><?php print $title; ?></h1><?php endif; ?>
<?php if ($primary_local_tasks): ?><ul class="tabs primary"><?php print $primary_local_tasks; ?></ul><?php endif; ?>
</div>
diff --git a/themes/seven/style.css b/themes/seven/style.css
index 79b629ebb..8cb82de26 100644
--- a/themes/seven/style.css
+++ b/themes/seven/style.css
@@ -64,15 +64,9 @@ legend {
background-color: #e0e0d8;
}
-#branding div.back-to-site {
- background: url(images/arrow-prev.png) no-repeat left center;
- padding-left: 8px;
- font-size: 11px;
-}
-
#branding div.breadcrumb {
- float: left;
- font-size: 12px;
+ font-size: 11px;
+ padding-bottom: 5px;
}
#branding div.block {
@@ -105,14 +99,6 @@ legend {
}
/**
- * Breadcrumbs.
- */
-div.breadcrumb a {
- padding: 0 10px 0 0;
- color: #fff;
-}
-
-/**
* Help.
*/
#help {
diff --git a/themes/seven/template.php b/themes/seven/template.php
index 13f939b93..60a7e8202 100644
--- a/themes/seven/template.php
+++ b/themes/seven/template.php
@@ -8,7 +8,6 @@ function seven_preprocess_page(&$vars) {
$vars['primary_local_tasks'] = menu_primary_local_tasks();
$vars['secondary_local_tasks'] = menu_secondary_local_tasks();
$vars['ie_styles'] = '<!--[if lt IE 7]><style type="text/css" media="screen">@import ' . path_to_theme() . '/ie6.css";</style><![endif]-->';
- $vars['back_to_site'] = l(t('Back to the front page'), '');
}
/**