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 256c6a2369bdfbd6464cf12239c2a2e8fe1942e0 Author: ALOK KUMAR <[email protected]> AuthorDate: Sun Nov 23 23:45:46 2025 +0530 Improve footer hover interaction in documentation footer (#1284) --- landing-pages/site/assets/scss/_footer.scss | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/landing-pages/site/assets/scss/_footer.scss b/landing-pages/site/assets/scss/_footer.scss index 9d56a37f1e..1eeeab9dbb 100644 --- a/landing-pages/site/assets/scss/_footer.scss +++ b/landing-pages/site/assets/scss/_footer.scss @@ -37,6 +37,13 @@ footer { &--link { margin-right: 30px; + cursor: pointer; + transition: opacity 0.2s ease, transform 0.2s ease; + + &:hover { + opacity: 0.7; + transform: scale(1.05); + } } &--button-with-text { @@ -64,6 +71,9 @@ footer { } &--policy-item { + cursor: pointer; + transition: opacity 0.2s ease, color 0.2s ease; + &::before { content: "\00a0\00a0"; } @@ -73,6 +83,11 @@ footer { color: white; } + &:hover { + opacity: 0.7; + color: #00c7d4 !important; // Airflow blue + } + &:last-of-type { &::after { content: "\00a0\00a0|\00a0\00a0"; @@ -143,8 +158,10 @@ footer { flex-direction: column; } - &--policy-item, &--policy-item:last-of-type { - &::before, &::after { + &--policy-item, + &--policy-item:last-of-type { + &::before, + &::after { content: ""; } }
