mirror of https://github.com/zulip/zulip.git
left sidebar: Avoid unnecessary scrollbar.
This commit modifies the `#add-stream-link` element to be a `div` containing the previous `a` element. The margin that was added to `#stream-filters-container .simplebar-content` is then moved to that new `div`. This preserves the intended behaviour of the commit which introduced the margin, to fix #12519 while removing an unnecessary scrollbar which could hide the top-most stream in the stream list. Fixes #13050 Signed-off-by: David Wood <david@davidtw.co>
This commit is contained in:
parent
c10f3f87b7
commit
7fc72dff44
|
@ -125,10 +125,6 @@ li.show-more-topics a {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
#stream-filters-container .simplebar-content {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
#private-container {
|
||||
max-height: 200px;
|
||||
}
|
||||
|
@ -147,6 +143,7 @@ li.show-more-topics a {
|
|||
#add-stream-link {
|
||||
text-decoration: none;
|
||||
margin-left: 10px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
#add-stream-link i {
|
||||
|
|
|
@ -74,7 +74,9 @@
|
|||
<div id="stream-filters-container" class="scrolling_list" data-simplebar>
|
||||
<ul id="stream_filters" class="filters"></ul>
|
||||
{% if show_add_streams %}
|
||||
<a id="add-stream-link" href="#streams/all"><i class="fa fa-plus-circle" aria-hidden="true"></i>{{ _('Add streams') }}</a>
|
||||
<div id="add-stream-link">
|
||||
<a href="#streams/all"><i class="fa fa-plus-circle" aria-hidden="true"></i>{{ _('Add streams') }}</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue