summaryrefslogtreecommitdiff
path: root/themes/seven/template.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-08-12 11:32:07 +0000
committerDries Buytaert <dries@buytaert.net>2009-08-12 11:32:07 +0000
commit3506918ab6b86608e6e3b7919ffc1b21b0d33c86 (patch)
tree84f7ba13480ae4e0a7a1012fca874c1295e7fc48 /themes/seven/template.php
parent36e082ba9165d6583ccbf64fd5441ddc3986693b (diff)
downloadbrdo-3506918ab6b86608e6e3b7919ffc1b21b0d33c86.tar.gz
brdo-3506918ab6b86608e6e3b7919ffc1b21b0d33c86.tar.bz2
- Patch #539724 by Gábor Hojtsy, Bohjan: make Seven legends look like on the mocks.
Diffstat (limited to 'themes/seven/template.php')
-rw-r--r--themes/seven/template.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/seven/template.php b/themes/seven/template.php
index 701b54c2a..9fd97f12f 100644
--- a/themes/seven/template.php
+++ b/themes/seven/template.php
@@ -65,3 +65,26 @@ function seven_tablesort_indicator($style) {
return theme('image', $theme_path . '/images/arrow-desc.png', t('sort icon'), t('sort descending'));
}
}
+
+/**
+ * Override of theme_fieldset().
+ *
+ * Add span to legend tag, so we can style it to be inside the fieldset.
+ */
+function seven_fieldset($element) {
+ if (!empty($element['#collapsible'])) {
+ drupal_add_js('misc/collapse.js');
+
+ if (!isset($element['#attributes']['class'])) {
+ $element['#attributes']['class'] = '';
+ }
+
+ $element['#attributes']['class'] .= ' collapsible';
+ if (!empty($element['#collapsed'])) {
+ $element['#attributes']['class'] .= ' collapsed';
+ }
+ }
+ $element['#attributes']['id'] = $element['#id'];
+
+ return '<fieldset' . drupal_attributes($element['#attributes']) . '>' . ($element['#title'] ? '<legend><span>' . $element['#title'] . '</span></legend>' : '') . (isset($element['#description']) && $element['#description'] ? '<div class="fieldset-description">' . $element['#description'] . '</div>' : '') . (!empty($element['#children']) ? $element['#children'] : '') . (isset($element['#value']) ? $element['#value'] : '') . "</fieldset>\n";
+}