Skip to content
Snippets Groups Projects
Commit 3506918a authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #539724 by Gábor Hojtsy, Bohjan: make Seven legends look like on the mocks.

parent 36e082ba
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -232,7 +232,7 @@ class SimpleTestFunctionalTest extends DrupalWebTestCase {
$fieldsets = $this->xpath('//fieldset');
$info = $this->getInfo();
foreach ($fieldsets as $fieldset) {
if ($fieldset->legend == $info['name']) {
if ($this->asText($fieldset->legend) == $info['name']) {
return $fieldset;
}
}
......
......@@ -443,14 +443,35 @@ table tr.selected td {
/* Fieldsets & Form items */
fieldset {
border: 1px solid #ccc;
padding: 9px;
padding: 30px 13px 13px 14px;
margin: 0 0 10px;
}
fieldset legend span,
fieldset legend a {
position: absolute;
margin-top: 9px;
}
fieldset legend a span {
position: relative;
margin-top: 0;
}
fieldset.collapsed {
background: transparent;
}
html.js fieldset.collapsed legend,
html.js fieldset.collapsed legend * {
display: block;
}
html.js fieldset.collapsed {
border-width: 1px;
margin-bottom: 10px;
padding: 13px;
}
fieldset fieldset {
background: #fff;
}
......
......@@ -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";
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment