From 1e4dc30d5c4a8cb99080bf3269ee321e7a5d3b19 Mon Sep 17 00:00:00 2001 From: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Date: Wed, 14 Dec 2022 15:20:17 -0500 Subject: [PATCH] Removes feedback buttons (#2169) * Removes feedback buttons Signed-off-by: Fanit Kolchina * Put link to edit in left nav Signed-off-by: Fanit Kolchina Signed-off-by: Fanit Kolchina --- _layouts/default.html | 7 +++++-- _sass/custom/custom.scss | 9 ++++++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index 2ef4c43a..8c655be1 100755 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -96,6 +96,9 @@ layout: table_wrappers {% endif %} {% endfor %} {% endif %} +
@@ -163,10 +166,10 @@ layout: table_wrappers {% endfor %} {% endif %} - + {% capture footer_custom %} {%- include footer_custom.html -%} {% endcapture %} diff --git a/_sass/custom/custom.scss b/_sass/custom/custom.scss index 826ffc35..c302c772 100755 --- a/_sass/custom/custom.scss +++ b/_sass/custom/custom.scss @@ -203,20 +203,23 @@ img { // Back to top button .top-link { display: block; - color: $body-text-color; + color: $grey-dk-000; font-size: 2rem; font-weight: bold; border-width:2px; border-style:solid; border-color: $grey-lt-300; border-radius: 12px; - box-shadow: 1px 2px $grey-dk-000; + box-shadow: 1px 2px 3px $grey-lt-300; padding: 0.1rem 1rem; position: fixed; bottom: 30px; right: 40px; + z-index: 1; &:hover { - border-color: $body-text-color; + border-color: $grey-dk-000; + background-color: $sidebar-color; + color: $body-text-color; } }