mirror of https://github.com/zulip/zulip.git
user_group_info_popover: Remove bootstrap popover classes.
Added a `group-info-content` inplace of them and added the required CSS.
This commit is contained in:
parent
04c4b6e8b8
commit
a04117b6d3
|
@ -337,6 +337,10 @@ ul {
|
|||
}
|
||||
|
||||
.group-info-popover {
|
||||
.group-info-content {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
.manage-group a {
|
||||
text-align: center;
|
||||
}
|
||||
|
|
|
@ -1,36 +1,34 @@
|
|||
<div class="group-info-popover">
|
||||
<div class="popover-inner">
|
||||
<div class="popover-content">
|
||||
<div class="group-info">
|
||||
<div class="group-name"> {{group_name}} </div>
|
||||
<div class="group-description">
|
||||
{{group_description}}
|
||||
</div>
|
||||
<div class="group-info-content">
|
||||
<div class="group-info">
|
||||
<div class="group-name"> {{group_name}} </div>
|
||||
<div class="group-description">
|
||||
{{group_description}}
|
||||
</div>
|
||||
<hr />
|
||||
<ul class="nav nav-list member-list" data-simplebar data-simplebar-auto-hide="false">
|
||||
{{#each members}}
|
||||
<li>
|
||||
{{#if is_active }}
|
||||
{{#if is_bot}}
|
||||
<i class="zulip-icon zulip-icon-bot" aria-hidden="true"></i>
|
||||
{{else}}
|
||||
<span class="user_circle {{user_circle_class}} popover_user_presence" title="{{user_last_seen_time_status}}"></span>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
<span>{{full_name}}</span>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
<hr />
|
||||
<ul class="nav nav-list manage-group">
|
||||
<li>
|
||||
<a href="#organization/user-groups-admin">
|
||||
<i class="fa fa-cog" aria-hidden="true"></i>
|
||||
{{t 'Manage user groups' }}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr />
|
||||
<ul class="nav nav-list member-list" data-simplebar data-simplebar-auto-hide="false">
|
||||
{{#each members}}
|
||||
<li>
|
||||
{{#if is_active }}
|
||||
{{#if is_bot}}
|
||||
<i class="zulip-icon zulip-icon-bot" aria-hidden="true"></i>
|
||||
{{else}}
|
||||
<span class="user_circle {{user_circle_class}} popover_user_presence" title="{{user_last_seen_time_status}}"></span>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
<span>{{full_name}}</span>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
<hr />
|
||||
<ul class="nav nav-list manage-group">
|
||||
<li>
|
||||
<a href="#organization/user-groups-admin">
|
||||
<i class="fa fa-cog" aria-hidden="true"></i>
|
||||
{{t 'Manage user groups' }}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue