This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch staging in repository https://gitbox.apache.org/repos/asf/airflow-site.git
commit 5469e6bc0116baa85ff740465ba302314a7b64a1 Author: Shashiranjan singh <[email protected]> AuthorDate: Sun Dec 14 13:31:26 2025 +0530 Fix inconsistent hover and underline behavior on Community page links (#1318) * Fix community page link hover underline * Removed list-link, no longer needed --- landing-pages/site/assets/scss/_community-page.scss | 4 ---- landing-pages/site/content/en/community/_index.html | 12 ++++++------ 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/landing-pages/site/assets/scss/_community-page.scss b/landing-pages/site/assets/scss/_community-page.scss index b6d9e93eb8..81af6199ca 100644 --- a/landing-pages/site/assets/scss/_community-page.scss +++ b/landing-pages/site/assets/scss/_community-page.scss @@ -19,10 +19,6 @@ @import "media"; @import "fonts"; - .list-link { - @extend .bodytext__medium--greyish-brown; - text-decoration: underline; - } .community { &--header-container { diff --git a/landing-pages/site/content/en/community/_index.html b/landing-pages/site/content/en/community/_index.html index abbb44c56e..6f2966651d 100644 --- a/landing-pages/site/content/en/community/_index.html +++ b/landing-pages/site/content/en/community/_index.html @@ -14,14 +14,14 @@ menu: Manage your <b>subscription</b>: </p> <ul class="ticks-blue mx-auto"> - <li class="text-break-all"><a class="list-link" href="mailto:[email protected]">[email protected]</a></li> - <li class="text-break-all"><a class="list-link" href="mailto:[email protected]">[email protected]</a></li> + <li class="text-break-all"><a href="mailto:[email protected]">[email protected]</a></li> + <li class="text-break-all"><a href="mailto:[email protected]">[email protected]</a></li> </ul> <p class="bodytext__medium--brownish-grey"> Browse the <b>archive</b>: </p> <ul class="ticks-blue mx-auto"> - <li class="text-break-all"><a class="list-link" href="https://lists.apache.org/[email protected]">https://lists.apache.org/[email protected]</a></li> + <li class="text-break-all"><a href="https://lists.apache.org/[email protected]">https://lists.apache.org/[email protected]</a></li> </ul> <p class="bodytext__medium--brownish-grey"> For answers to ad hoc questions, try asking in the official <b>Airflow Slack</b> first. See <b>"Ask a question"</b> below for details and additional resources. @@ -86,14 +86,14 @@ menu: Manage your <b>subscription</b>: </p> <ul class="ticks-blue mx-auto"> - <li class="text-break-all"><a class="list-link" href="mailto:[email protected]">[email protected]</a></li> - <li class="text-break-all"><a class="list-link" href="mailto:[email protected]">[email protected]</a></li> + <li class="text-break-all"><a href="mailto:[email protected]">[email protected]</a></li> + <li class="text-break-all"><a href="mailto:[email protected]">[email protected]</a></li> </ul> <p class="bodytext__medium--brownish-grey"> Browse the <b>archive</b>: </p> <ul class="ticks-blue mx-auto"> - <li class="text-break-all"><a class="list-link" href="https://lists.apache.org/[email protected]">https://lists.apache.org/[email protected]</a></li> + <li class="text-break-all"><a href="https://lists.apache.org/[email protected]">https://lists.apache.org/[email protected]</a></li> </ul> <p class="bodytext__medium--brownish-grey"> For answers to ad hoc questions, try asking in the official <b>Airflow Slack</b> first. See <b>"Ask a question"</b> below for details and additional resources.
