mirror of https://github.com/zulip/zulip.git
topic-popover: Add chevron-right icon in topic popover title.
This commit is contained in:
parent
aa82008503
commit
b122ad7da4
|
@ -193,6 +193,7 @@ function build_topic_popover(opts) {
|
|||
can_mute_topic: can_mute_topic,
|
||||
can_unmute_topic: can_unmute_topic,
|
||||
is_admin: sub.is_admin,
|
||||
color: sub.color,
|
||||
});
|
||||
|
||||
$(elt).popover({
|
||||
|
|
|
@ -122,6 +122,10 @@ ul {
|
|||
text-align: center;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
|
||||
.fa-chevron-right {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.admin-separator {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<ul class="nav nav-list topics_popover">
|
||||
<li>
|
||||
<p class="topic-name">
|
||||
<i class="fa fa-chevron-right" aria-hidden="true" style="color: {{color}}"></i>
|
||||
<b>{{topic_name}}</b>
|
||||
</p>
|
||||
</li>
|
||||
|
|
Loading…
Reference in New Issue