From 2405b7e0347d7ffaa63bbf7eea807007330110c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Morais?= <385232+gnclmorais@users.noreply.github.com> Date: Tue, 20 Jan 2026 22:56:47 +0100 Subject: [PATCH 1/3] Fix social links background on email Hopefully fixes #2437 --- app/assets/stylesheets/email.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/assets/stylesheets/email.css b/app/assets/stylesheets/email.css index ad28603c1..3102d95c3 100644 --- a/app/assets/stylesheets/email.css +++ b/app/assets/stylesheets/email.css @@ -63,12 +63,12 @@ table.social { display:block; text-align:center; } -a.fb { background-color: #3B5998!important; } -a.bs { background-color: #1daced!important; } -a.ms { background-color: #000!important; } -a.sl { background-color: #2EB67D!important; } -a.yt { background-color: #FF0000!important; } -a.li { background-color: #0077B5!important; } +.social .soc-btn.fb { background-color: #3B5998!important; } +.social .soc-btn.bs { background-color: #1daced!important; } +.social .soc-btn.ms { background-color: #000!important; } +.social .soc-btn.sl { background-color: #2EB67D!important; } +.social .soc-btn.yt { background-color: #FF0000!important; } +.social .soc-btn.li { background-color: #0077B5!important; } .sidebar .soc-btn { display:block; From b1af31653f1f913ca06798ce55c28ab1ed46ef57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Morais?= <385232+gnclmorais@users.noreply.github.com> Date: Tue, 20 Jan 2026 22:58:20 +0100 Subject: [PATCH 2/3] Fixes LinkedIn link on emails --- app/views/shared_mailers/_social.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/shared_mailers/_social.html.haml b/app/views/shared_mailers/_social.html.haml index 9012b71b9..8fb5146ec 100644 --- a/app/views/shared_mailers/_social.html.haml +++ b/app/views/shared_mailers/_social.html.haml @@ -10,7 +10,7 @@ %h5 Connect with us: %p %a{ href: "https://slack.codebar.io/", class: 'soc-btn sl'} Join us on Slack - %a{ href: "https://www.youtube.com/channel/UCEYz232agE47GHUq8wneBCA", class: "soc-btn li" } Follow us on LinkedIn + %a{ href: "https://www.linkedin.com/company/codebarcommunity", class: "soc-btn li" } Follow us on LinkedIn %a{ href: "https://www.facebook.com/codebarHQ", class: 'soc-btn fb'} Follow us on Facebook %a{ href: "https://bsky.app/profile/codebar.bsky.social", class: "soc-btn bs" } Follow us on Bluesky %a{ href: "https://www.youtube.com/channel/UCEYz232agE47GHUq8wneBCA", class: "soc-btn yt" }Follow us on YouTube From 80aa727a799d4144d0e6dc33b0f7f8502572b32a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Morais?= <385232+gnclmorais@users.noreply.github.com> Date: Tue, 20 Jan 2026 22:59:02 +0100 Subject: [PATCH 3/3] Fix spacing in YouTube link for consistency --- app/views/shared_mailers/_social.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/shared_mailers/_social.html.haml b/app/views/shared_mailers/_social.html.haml index 8fb5146ec..0810dc874 100644 --- a/app/views/shared_mailers/_social.html.haml +++ b/app/views/shared_mailers/_social.html.haml @@ -13,7 +13,7 @@ %a{ href: "https://www.linkedin.com/company/codebarcommunity", class: "soc-btn li" } Follow us on LinkedIn %a{ href: "https://www.facebook.com/codebarHQ", class: 'soc-btn fb'} Follow us on Facebook %a{ href: "https://bsky.app/profile/codebar.bsky.social", class: "soc-btn bs" } Follow us on Bluesky - %a{ href: "https://www.youtube.com/channel/UCEYz232agE47GHUq8wneBCA", class: "soc-btn yt" }Follow us on YouTube + %a{ href: "https://www.youtube.com/channel/UCEYz232agE47GHUq8wneBCA", class: "soc-btn yt" } Follow us on YouTube