Removes feedback buttons (#2169)

* Removes feedback buttons

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Put link to edit in left nav

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
This commit is contained in:
kolchfa-aws 2022-12-14 15:20:17 -05:00 committed by GitHub
parent 320244db63
commit 1e4dc30d5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 5 deletions

View File

@ -96,6 +96,9 @@ layout: table_wrappers
{% endif %} {% endif %}
{% endfor %} {% endfor %}
{% endif %} {% endif %}
<div class="site-footer">
<p class="text-small text-grey-dk-100">See a problem? Submit <a href="https://github.com/opensearch-project/documentation-website/issues">issues</a> or <a href="https://github.com/opensearch-project/documentation-website/edit/main/{{ page.path }}">edit this page</a> on <a href="https://github.com/opensearch-project/documentation-website/">GitHub</a>.</p>
</div>
</nav> </nav>
</div> </div>
<div class="copy-banner"> <div class="copy-banner">
@ -163,10 +166,10 @@ layout: table_wrappers
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}
<!--
<hr> <hr>
{% include feedback.html %} {% include feedback.html %}
-->
{% capture footer_custom %} {% capture footer_custom %}
{%- include footer_custom.html -%} {%- include footer_custom.html -%}
{% endcapture %} {% endcapture %}

View File

@ -203,20 +203,23 @@ img {
// Back to top button // Back to top button
.top-link { .top-link {
display: block; display: block;
color: $body-text-color; color: $grey-dk-000;
font-size: 2rem; font-size: 2rem;
font-weight: bold; font-weight: bold;
border-width:2px; border-width:2px;
border-style:solid; border-style:solid;
border-color: $grey-lt-300; border-color: $grey-lt-300;
border-radius: 12px; border-radius: 12px;
box-shadow: 1px 2px $grey-dk-000; box-shadow: 1px 2px 3px $grey-lt-300;
padding: 0.1rem 1rem; padding: 0.1rem 1rem;
position: fixed; position: fixed;
bottom: 30px; bottom: 30px;
right: 40px; right: 40px;
z-index: 1;
&:hover { &:hover {
border-color: $body-text-color; border-color: $grey-dk-000;
background-color: $sidebar-color;
color: $body-text-color;
} }
} }