popovers: Improve user group popovers.

This commit updates the user group popovers to change the icon
and text of ".manage-group" option to match what we have in
gear menu and also change the heading and ".manage-group"
option to be left-aligned.
This commit is contained in:
Sahil Batra
2023-12-07 09:39:52 +05:30
committed by Tim Abbott
parent a97cf5d107
commit c4ec18bc61
2 changed files with 17 additions and 7 deletions

View File

@@ -386,18 +386,29 @@ ul {
padding: 5px 0; padding: 5px 0;
} }
.manage-group a {
text-align: center;
}
.group-info { .group-info {
text-align: center; padding-left: 11px;
padding-right: 11px;
.group-name { .group-name {
font-weight: bold; font-weight: bold;
} }
} }
.manage-group {
a {
display: flex;
align-items: center;
padding-left: 11px;
.zulip-icon {
position: relative;
top: -1px;
margin-right: 5px;
}
}
}
.member-list { .member-list {
position: relative; position: relative;
max-height: 300px; max-height: 300px;

View File

@@ -24,8 +24,7 @@
<ul class="nav nav-list manage-group"> <ul class="nav nav-list manage-group">
<li> <li>
<a href="{{group_edit_url}}"> <a href="{{group_edit_url}}">
<i class="fa fa-cog" aria-hidden="true"></i> <i class="zulip-icon zulip-icon-user-cog" aria-hidden="true"></i>{{t 'Group settings' }}
{{t 'Manage user groups' }}
</a> </a>
</li> </li>
</ul> </ul>