From 90c50c761ea9ba681d38ffd4f3486f6662a36693 Mon Sep 17 00:00:00 2001 From: rjzupkoii Date: Wed, 14 Feb 2024 20:03:58 -0500 Subject: [PATCH] Add Mastodon to social media --- _includes/author-profile.html | 3 +++ _sass/_utilities.scss | 5 +++++ _sass/_variables.scss | 1 + 3 files changed, 9 insertions(+) diff --git a/_includes/author-profile.html b/_includes/author-profile.html index 495b90a13f450..b2ef991094df6 100644 --- a/_includes/author-profile.html +++ b/_includes/author-profile.html @@ -44,6 +44,9 @@

{{ author.name }}

{% if author.twitter %}
  • Twitter
  • {% endif %} + {% if author.mastodon %} +
  • Mastodon
  • + {% endif %} {% if author.facebook %}
  • Facebook
  • {% endif %} diff --git a/_sass/_utilities.scss b/_sass/_utilities.scss index 7870452ed02f2..e11c64242ffa0 100644 --- a/_sass/_utilities.scss +++ b/_sass/_utilities.scss @@ -233,6 +233,11 @@ body:hover .visually-hidden button { color: $linkedin-color; } + .fa-mastodon, + .fa-mastodon-square { + color: $mastodon-color; + } + .ai-orcid-square { color: $orcid-color; } diff --git a/_sass/_variables.scss b/_sass/_variables.scss index bd783e019699f..6f893164efb68 100644 --- a/_sass/_variables.scss +++ b/_sass/_variables.scss @@ -77,6 +77,7 @@ $google-plus-color : #dd4b39; $instagram-color : #517fa4; $lastfm-color : #d51007; $linkedin-color : #007bb6; +$mastodon-color : #6364ff; $orcid-color : #a6ce39; $pinterest-color : #cb2027; $rss-color : #fa9b39;