From 79ede252ccaea5a95d0ffe78eb38dd7b90597edc Mon Sep 17 00:00:00 2001 From: Mike Thomas <78363703+mike-j-thomas@users.noreply.github.com> Date: Fri, 14 Mar 2025 02:57:36 +0900 Subject: [PATCH] Website: fix link styling on deploy docs (#27092) - Fixed link styling on deploy docs. - Fixed hover styles on the CTA on the bottom of docs pages --------- Co-authored-by: Eric --- .../styles/pages/docs/basic-documentation.less | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/website/assets/styles/pages/docs/basic-documentation.less b/website/assets/styles/pages/docs/basic-documentation.less index 055aa8b8cd..1f8ce7996c 100644 --- a/website/assets/styles/pages/docs/basic-documentation.less +++ b/website/assets/styles/pages/docs/basic-documentation.less @@ -569,10 +569,10 @@ margin-right: 8px; border-radius: 12px; flex-grow: 1; + text-decoration: none; color: unset; &:hover { - text-decoration: unset; - border: 1px solid @core-vibrant-blue; + box-shadow: 0px 0px 0px 2px rgba(234, 235, 237, 1); } } } @@ -580,6 +580,12 @@ img { margin: 0; } + &::after { + content: none; + } + &:hover::after { + content: none; + } } [purpose='quote'] { font-style: italic; @@ -793,6 +799,9 @@ font-size: 14px; padding: 6px 12px; width: 131px; + &:hover { + color: #FFF; + } } }