Skip to content
Snippets Groups Projects
Commit 5635e86a authored by Eric Bremner's avatar Eric Bremner
Browse files

Merge branch 'feature/ISTWCMS-5747-m26lebla-migrate-block' into '1.0.x'

ISTWCMS-5747: migrate block

See merge request !34
parents 63557aed 5933e758
No related branches found
No related tags found
1 merge request!34ISTWCMS-5747: migrate block
@forward 'block/block';
@forward 'carousel/carousel'; @forward 'carousel/carousel';
@forward 'content/content'; @forward 'content/content';
@forward 'footer/footer'; @forward 'footer/footer';
......
@use '../../01-core' as *;
// @file
// Styles for Block.
.block {
margin-bottom: var(--grid-gap);
}
// disable margin for layout builder blocks
.block--provider-layout-builder {
margin-bottom: 0;
}
{% set classes = [
'block',
modifier ? modifier: '',
attributes ? attributes.class
]|join(' ')|trim %}
{% set title_classes = [
'block__title',
title_attributes ? title_attributes.class
]|join(' ')|trim %}
{% set content_classes = [
'block__content',
content_attributes ? content_attributes.class
]|join(' ')|trim %}
{% if block_wrapper %}
<div class="{{ classes }}" {{ attributes ? attributes|without('class','id') }}>
{% endif %}
{% if constrain %}
<div class="{{ constrain }}">
{% endif %}
{{ title_prefix }}
{% if label %}
<{{ label_element ?: 'h2' }} class="{{ title_classes }}" {{ title_attributes ? title_attributes|without('class') }}>{{ label }}</{{ label_element ?: 'h2' }}>
{% endif %}
{{ title_suffix }}
{% if content_wrapper %}
<div class="{{ content_classes }}" {{ content_attributes ? content_attributes|without('class') }}>
{% endif %}
{% block content %}
{{ content }}
{% endblock %}
{% if content_wrapper %}
</div>
{% endif %}
{% if constrain %}
</div>
{% endif %}
{% if block_wrapper %}
</div>
{% endif %}
---
block_wrapper: true
constrain: ''
title_prefix: ''
label_element: ''
label: 'Block title'
title_suffix: ''
content_wrapper: true
content: |-
<p>Donec id elit non mi porta gravida at eget metus. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Nulla vitae elit libero, a pharetra augue. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Vestibulum id ligula porta felis euismod semper. Donec id elit non mi porta gravida at eget metus.</p>
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
@forward 'mobile-menu/mobile-menu'; @forward 'mobile-menu/mobile-menu';
@forward 'mobile-menu-button/mobile-menu-button'; @forward 'mobile-menu-button/mobile-menu-button';
@forward 'multi-type-list/multi-type-list'; @forward 'multi-type-list/multi-type-list';
@forward 'page-title/page-title';
@forward 'remote-video/remote-video'; @forward 'remote-video/remote-video';
@forward 'search/search'; @forward 'search/search';
@forward 'search/search--wcms-headerbar/search--wcms-headerbar'; @forward 'search/search--wcms-headerbar/search--wcms-headerbar';
......
...@@ -164,7 +164,7 @@ $size-xlarge: 7; ...@@ -164,7 +164,7 @@ $size-xlarge: 7;
position: relative; position: relative;
width: 100%; width: 100%;
a { a {
background: var(--uw-black); background: transparent;
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19); box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
display: block; display: block;
height: 100%; height: 100%;
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<div class="uw-image__wrapper {{ image_class }}"> <div class="uw-image__wrapper {{ image_class }}">
{% if image.type == 'full' %} {% if image.type == 'full' %}
{{ image.image.img_element['#uri'] }}
{% include '@components/responsive-image/responsive-image.twig' with { {% include '@components/responsive-image/responsive-image.twig' with {
'sources': image.image.sources, 'sources': image.image.sources,
'img_element': image.image.img_element['#uri'], 'img_element': image.image.img_element['#uri'],
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
attributes ? additional_attributes.class attributes ? additional_attributes.class
]|join(' ')|trim %} ]|join(' ')|trim %}
<div {% if type == 'error' %} role="alert" {% else %} role="contentinfo" {% endif %} {% if heading %}aria-label="{{ heading }}"{% endif %} class="{{messages_classes}}" {{ attributes ? attributes|without('class') }}>> <div {% if type == 'error' %} role="alert" {% else %} role="contentinfo" {% endif %} {% if heading %}aria-label="{{ heading }}"{% endif %} class="{{messages_classes}}" {{ attributes ? attributes|without('class') }}>
{% if messages|length > 1 %} {% if messages|length > 1 %}
<h2 class="visually-hidden">{{ heading }}</h2> <h2 class="visually-hidden">{{ heading }}</h2>
<ul class="message__list"> <ul class="message__list">
......
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