mirror of https://github.com/zulip/zulip.git
profile_popover: Remove the display presence dot for bots.
This commit removes the presence dot display for bots and fixes the gap between the bot name and bot icon in the user profile popover. It also fixes the alignment of the bot icon. Fixes: #25066
This commit is contained in:
parent
199afbe8eb
commit
bb4d2f5f5b
|
@ -429,11 +429,18 @@ ul {
|
|||
}
|
||||
|
||||
.user_profile_edit_button {
|
||||
margin-left: 10px;
|
||||
width: 25px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.user_profile_name {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.zulip-icon.zulip-icon-bot {
|
||||
padding: 3px 0 0;
|
||||
}
|
||||
|
||||
#user_profile_edit_button_icon {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
|
|
@ -2,9 +2,11 @@
|
|||
<div class="modal__overlay" tabindex="-1">
|
||||
<div class="modal__container new-style" role="dialog" aria-modal="true" aria-labelledby="dialog_title">
|
||||
<div class="modal__header">
|
||||
{{#unless is_bot}}
|
||||
<div class="tippy-zulip-tooltip" data-tippy-content="{{last_seen}}">
|
||||
<span class="{{user_circle_class}} user_circle user_profile_presence"></span>
|
||||
</div>
|
||||
{{/unless}}
|
||||
<h1 class="modal__title user_profile_name_heading" id="name">
|
||||
<span class="user_profile_name">{{full_name}}</span>
|
||||
{{#if is_bot}}
|
||||
|
|
Loading…
Reference in New Issue