Skip to content
Snippets Groups Projects
Commit 730e7543 authored by Chris Gross's avatar Chris Gross
Browse files

7.x-1.6 Release Candidate 3

parent 26f3fe35
No related branches found
No related tags found
No related merge requests found
WCM Base 7.x-1.6-rc3, 2018-03-27
--------------------------------
- WCM Omega: Accordion bugfixes.
WCM Base 7.x-1.6-rc2, 2018-03-22
--------------------------------
- WCM Omega:
......
source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -237,9 +237,7 @@
/*** detects if text panels pane has only a title and adds class of "title-only" ***/
Drupal.behaviors.wcmOmegaPaneType = {
attach: function (context, settings) {
$('.pane-bundle-text').not(':has(p)').closest('.pane-bundle-text').addClass('title-only');
$('.pane-bundle-text').not(':has(.field)').closest('.pane-bundle-text').addClass('title-only');
}
};
......
......@@ -4,7 +4,7 @@
overflow: hidden;
opacity: 1;
transition: visibility 0.5s ease, max-height 0.5s ease, opacity 0.5s ease;
max-height: 100em;
max-height: 999em;
/* magic number for max-height = enough height */
visibility: visible;
transition-delay: 0s;
......
......@@ -21,7 +21,7 @@
?>
<div class='views-accordion-grouped-row'>
<?php if (!empty($title)): ?>
<h3 class="<?php print $view_accordion_id; ?>">
<h3 class="<?php print $view_accordion_id; ?> views-accordion-header">
<?php print $title; ?>
</h3>
<?php endif; ?>
......
......@@ -135,8 +135,6 @@ function wcm_omega_form_system_theme_settings_alter(&$form, $form_state) {
$form['#attached']['css'][] = drupal_get_path('theme', 'wcm_omega') . '/css/wcm-omega.settings.css';
$form['#validate'][] = 'wcm_omega_form_system_theme_settings_validate';
$form['#submit'][] = 'wcm_omega_form_system_theme_settings_submit';
}
// validation to not allow certain color combinations
......
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