From 3526f6d6edbd817a7f77b3610564696375927fab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Sat, 22 Feb 2025 16:13:51 -0500 Subject: [PATCH 1/3] Commit config snapshot --- ...napshot.config_sync.module.block_class.yml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml new file mode 100644 index 0000000..9d5d34b --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml @@ -0,0 +1,34 @@ +uuid: 0efe4cf0-2aff-4c18-a3ef-0f7fd8879cbb +langcode: en +status: true +dependencies: + module: + - block_class +id: config_sync.module.block_class +snapshotSet: config_sync +extensionType: module +extensionName: block_class +items: + - + collection: '' + name: block_class.settings + data: + block_classes_stored: { } + default_case: standard + enable_attributes: true + enable_auto_complete: true + enable_id_replacement: true + enable_special_chars: false + field_type: multiple_textfields + filter_html_clean_css_identifier: '' + items_per_page: 50 + qty_attributes_per_block: 10 + qty_classes_per_block: 10 + maxlength_attributes: 255 + maxlength_block_class_field: 255 + maxlength_id: 255 + weight_attributes: 0 + weight_class: 0 + weight_id: 0 + _core: + default_config_hash: XEpuHrBp3DELKxVx0tmwE6CS7NSIKXu4F6QhT_vwqd0 From dede5d0f90a0b9bce84fae39f5ab5cb3a0e67371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Sat, 22 Feb 2025 16:52:25 -0500 Subject: [PATCH 2/3] Prevent a slight horizontal scroll from page title area Not entirely sure the root cause, but we do mess with default overflow visibility in order to overlay the title on the image. Ref #114 --- web/themes/custom/geofresco/src/global/_layout.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/themes/custom/geofresco/src/global/_layout.scss b/web/themes/custom/geofresco/src/global/_layout.scss index 78c0fb7..806a7f2 100644 --- a/web/themes/custom/geofresco/src/global/_layout.scss +++ b/web/themes/custom/geofresco/src/global/_layout.scss @@ -39,6 +39,11 @@ } } +// Prevent a slight horizontal scroll. +.page-title .container { + overflow-x: hidden; +} + /* On content listing pages (e.g. card view mode). */ .background-replacement-for-no-image { height: 10rem; From 2230b88aa2bf29b3998d950efe98e2980cec0a11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Sat, 22 Feb 2025 16:52:44 -0500 Subject: [PATCH 3/3] Compile CSS --- web/themes/custom/geofresco/dist/css/global.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/themes/custom/geofresco/dist/css/global.css b/web/themes/custom/geofresco/dist/css/global.css index 2de7949..fb07270 100644 --- a/web/themes/custom/geofresco/dist/css/global.css +++ b/web/themes/custom/geofresco/dist/css/global.css @@ -7118,6 +7118,9 @@ label.panel-block { overflow: visible; z-index: 10; } +.page-title .container { + overflow-x: hidden; } + /* On content listing pages (e.g. card view mode). */ .background-replacement-for-no-image { height: 10rem; }