From 08744d66cd665ae02d421e2be5f38b07ba9110c2 Mon Sep 17 00:00:00 2001 From: escuriola <escuriola@gmail.com> Date: Tue, 2 Nov 2021 13:17:43 +0100 Subject: [PATCH] OEL-719: Adapt offcanvas and buttons to BCL 0.11.0. --- oe_whitelabel.theme | 11 ++++++++--- .../overrides/search/block--facets-form.html.twig | 9 ++++++--- .../overrides/search/facets-result-item.html.twig | 3 ++- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/oe_whitelabel.theme b/oe_whitelabel.theme index 363986d0..1941cd05 100644 --- a/oe_whitelabel.theme +++ b/oe_whitelabel.theme @@ -72,10 +72,15 @@ function oe_whitelabel_preprocess_links__language_block(&$variables) { */ function oe_whitelabel_form_facets_form_alter(&$form, FormStateInterface $form_state, $form_id) { if (isset($form['actions'])) { - $form['actions']['#attributes']['class'][] = 'mt-4'; + $action_classes = ['mt-4', 'd-grid', 'gap-4', 'd-md-block']; + foreach ($action_classes as $action_class) { + if (!isset($action_class, $form['actions']['#attributes']['class']) || !in_array($action_class, $form['actions']['#attributes']['class'], TRUE)) { + $form['actions']['#attributes']['class'][] = $action_class; + } + } } if (isset($form['actions']['submit'])) { - $submit_classes = ['me-2', 'btn', 'btn-primary']; + $submit_classes = ['me-md-3', 'btn', 'btn-primary', 'btn-md']; foreach ($submit_classes as $submit_class) { if (!isset($submit_class, $form['actions']['submit']['#attributes']['class']) || !in_array($submit_class, $form['actions']['submit']['#attributes']['class'], TRUE)) { $form['actions']['submit']['#attributes']['class'][] = $submit_class; @@ -83,7 +88,7 @@ function oe_whitelabel_form_facets_form_alter(&$form, FormStateInterface $form_s } } if (isset($form['actions']['reset'])) { - $reset_classes = ['btn', 'btn-secondary']; + $reset_classes = ['btn', 'btn-light', 'btn-md']; foreach ($reset_classes as $reset_class) { if (!isset($form['actions']['reset']['#attributes']['class']) || !in_array($reset_class, $form['actions']['reset']['#attributes']['class'], TRUE)) { $form['actions']['reset']['#attributes']['class'][] = $reset_class; diff --git a/templates/overrides/search/block--facets-form.html.twig b/templates/overrides/search/block--facets-form.html.twig index 3e5c4ab4..749b340a 100644 --- a/templates/overrides/search/block--facets-form.html.twig +++ b/templates/overrides/search/block--facets-form.html.twig @@ -37,7 +37,7 @@ 'url': content.actions['reset']['#url'].toString(), 'style': 'secondary', 'attributes': extra_attributes.addClass('ms-2') - }) + }) %} {% set actions = content.actions %} {% set actions = actions|merge({('reset'): reset}) %} @@ -49,7 +49,7 @@ 'label': label, 'heading': 4, 'extra_classes': "mb-lg-4", - }, + }, 'attributes': attributes.addClass('bcl-offcanvas'), 'offcanvas_id': 'bcl-offcanvas', 'body': content, @@ -61,6 +61,9 @@ 'extra_classes_header': "p-lg-0", 'with_trigger': true, 'toggle_button_label': label, - 'icon_name': 'sliders' + 'icon_position': 'before', + 'icon': { + 'name': 'filter', + }, }) }} {% endblock %} diff --git a/templates/overrides/search/facets-result-item.html.twig b/templates/overrides/search/facets-result-item.html.twig index d37b1930..1ee3de65 100644 --- a/templates/overrides/search/facets-result-item.html.twig +++ b/templates/overrides/search/facets-result-item.html.twig @@ -16,8 +16,9 @@ * @ingroup themeable */ #} -{% set attributes = create_attribute({'class': ['me-2']}) %} +{% set attributes = create_attribute({'class': ['me-2', 'fs-6']}) %} {{ pattern('badge', { + 'background': 'light', 'label': value, 'assistive_text': assistive_text, 'dismissible': true, -- GitLab