Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 2.0] Add forum link to feedback panel #5434

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _includes/feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
<div class="text-small num-chars" id="num-chars">350 characters left</div>
<button id="send" class="send-button" disabled>Send</button>
<p class="text-small text-grey-dk-100 hidden" id="thank-you">Thank you for your feedback!</p>
<p class="text-small text-grey-dk-100">Have a question? <a target="_blank" href="https://forum.opensearch.org/">Ask us on the OpenSearch forum</a>.</p>
<p class="text-small text-grey-dk-100">Want to contribute? <a class="feedback-edit" target="_blank" href="https://github.com/opensearch-project/documentation-website/edit/main/{{ page.path }}">Edit this page</a> or <a class="feedback-issue" target="_blank" href="https://github.com/opensearch-project/documentation-website/issues/new?assignees=&labels=untriaged&template=issue_template.md&title=%5BDOC%5D">create an issue</a>.</p>
</div>
8 changes: 4 additions & 4 deletions _sass/custom/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,8 @@ p.label {
list-style-type: none;
background-color: $sidebar-color;
padding: $sp-6 $sp-4;
margin-left: $sp-6;
margin-right: $sp-6;
margin-left: $sp-4;
margin-right: $sp-8;
margin-bottom: 0;
overflow: auto;
}
Expand All @@ -563,8 +563,8 @@ p.label {
width: calc(#{$toc-width} - 4rem);
text-align: center;
margin-top: 3rem;
margin-left: $sp-6;
margin-right: $sp-6;
margin-left: $sp-4;
margin-right: $sp-8;
padding-left: 1rem;
padding-right: 1rem;
display: block;
Expand Down
Loading