mirror of https://github.com/zulip/zulip.git
Show a light STREAMS title in the streams list
(imported from commit 675ebca52ba10b8075bb788adf70d293b4d58fde)
This commit is contained in:
parent
91831d5ba7
commit
550aea8c64
|
@ -20,6 +20,7 @@
|
|||
<li data-name="starred"><i class="icon-vector-star"></i> <a href="#narrow/is/starred">Starred messages</a></li>
|
||||
<li data-name="mentioned"><i class="icon-vector-tag"></i> <a href="#narrow/is/mentioned">@-mentions<span class="count">(<span class="value"></span>)</span></a></li>
|
||||
</ul>
|
||||
<div id="streams_title">STREAMS</div>
|
||||
<ul id="stream_filters" class="filters scrolling_list"></ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -241,12 +241,21 @@ a:hover code {
|
|||
margin-top: 1em;
|
||||
}
|
||||
|
||||
#stream_filters {
|
||||
overflow-y: hidden;
|
||||
#streams_title {
|
||||
font-size: 0.9em;
|
||||
font-weight: 275;
|
||||
|
||||
border-top: 1px solid #eee;
|
||||
|
||||
margin-top: 5px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
#stream_filters {
|
||||
border-bottom: 1px solid #eee;
|
||||
margin: 10px 0px 10px 10px;
|
||||
padding: 10px 15px 10px 0;
|
||||
overflow-y: hidden;
|
||||
margin: 2px 0px 10px 10px;
|
||||
padding: 2px 15px 10px 0;
|
||||
}
|
||||
|
||||
#stream_filters .narrow-filter {
|
||||
|
|
Loading…
Reference in New Issue