mirror of https://github.com/zulip/zulip.git
Add "back to home" button at top of help pages.
This adds a button that will bring a user back to the home of the help section "/help".
This commit is contained in:
parent
74ca33d015
commit
5f6632c9e9
|
@ -1159,6 +1159,21 @@ a.bottom-signup-button {
|
|||
font-weight: 600;
|
||||
}
|
||||
|
||||
.markdown .back-to-home {
|
||||
float: right;
|
||||
margin-top: 13px;
|
||||
}
|
||||
|
||||
.markdown .back-to-home .icon-vector-chevron-left {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.markdown .back-to-home a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.markdown strong {
|
||||
font-weight: 600;
|
||||
white-space: pre;
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
|
||||
<div class="app terms-page">
|
||||
<div class="app-main markdown">
|
||||
<div class="back-to-home">
|
||||
<a href="/help/"><div class="icon-vector-chevron-left"></div>Home</a>
|
||||
</div>
|
||||
{{ article|render_markdown_path }}
|
||||
<div id="footer" class="documentation-footer">
|
||||
<hr />
|
||||
|
|
Loading…
Reference in New Issue