Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #555: Make a support link always be available #584

Merged
merged 5 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
adding:
status: false
removing:
status: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
adding:
status: true
removing:
status: false
25 changes: 25 additions & 0 deletions config/sync/block.block.dc_theme_footerprod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
uuid: 37f073d6-b3b2-486b-be86-0b5a04830d7e
langcode: en
status: false
dependencies:
config:
- system.menu.footer-prod
module:
- system
theme:
- dc_theme
id: dc_theme_footerprod
theme: dc_theme
region: footer
weight: 0
provider: null
plugin: 'system_menu_block:footer-prod'
settings:
id: 'system_menu_block:footer-prod'
label: 'Footer (PROD)'
label_display: '0'
provider: system
level: 1
depth: 1
expand_all_items: false
visibility: { }
2 changes: 1 addition & 1 deletion config/sync/config_split.config_split.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ weight: 0
stackable: false
no_patching: false
storage: folder
folder: ../config/split/dev
folder: ../config/split_dev
module: { }
theme: { }
complete_list: { }
Expand Down
2 changes: 1 addition & 1 deletion config/sync/config_split.config_split.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ weight: 0
stackable: false
no_patching: false
storage: folder
folder: ../config/split/prod
folder: ../config/split_prod
module: { }
theme: { }
complete_list:
Expand Down
8 changes: 8 additions & 0 deletions config/sync/system.menu.footer-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
uuid: 5a9a71af-781c-4f91-b864-600af80a546e
langcode: en
status: true
dependencies: { }
id: footer-prod
label: 'Footer (PROD)'
description: ''
locked: false
24 changes: 20 additions & 4 deletions html/themes/custom/dc_theme/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions html/themes/custom/dc_theme/scss/components/_navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,26 @@
}
}
}

// footer nav - footer prod menu
html.bcbb-theme {
nav.menu--footer-prod ul.navbar-nav {
display: block;
@include responsive() {
columns: 2;
gap: 4rem;
}
a.nav-link {
color: var(--bs-gray-100);
text-decoration: underline;
&:hover,
&:focus {
color: var(--bs-gray-200);
}
&:active,
&:visited {
color: var(--bs-gray-100);
}
}
}
}
Loading