Compare commits

..

3 commits

Author SHA1 Message Date
2230b88aa2 Compile CSS 2025-02-22 16:52:44 -05:00
dede5d0f90 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
2025-02-22 16:52:25 -05:00
3526f6d6ed Commit config snapshot 2025-02-22 16:13:51 -05:00
3 changed files with 42 additions and 0 deletions

View file

@ -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

View file

@ -7118,6 +7118,9 @@ label.panel-block {
overflow: visible; overflow: visible;
z-index: 10; } z-index: 10; }
.page-title .container {
overflow-x: hidden; }
/* On content listing pages (e.g. card view mode). */ /* On content listing pages (e.g. card view mode). */
.background-replacement-for-no-image { .background-replacement-for-no-image {
height: 10rem; } height: 10rem; }

View file

@ -39,6 +39,11 @@
} }
} }
// Prevent a slight horizontal scroll.
.page-title .container {
overflow-x: hidden;
}
/* On content listing pages (e.g. card view mode). */ /* On content listing pages (e.g. card view mode). */
.background-replacement-for-no-image { .background-replacement-for-no-image {
height: 10rem; height: 10rem;