mirror of https://github.com/zulip/zulip.git
settings: Add border-top to <li> for logout.
This makes the logout option in settings look more consistent with the rest of the settings UI.
This commit is contained in:
parent
38440d6ba4
commit
005a58ecd6
|
@ -1062,6 +1062,11 @@ input[type=text]#settings_search {
|
|||
border-bottom: 1px solid hsl(0, 0%, 93%);
|
||||
}
|
||||
|
||||
#settings_page .sidebar li.border-top {
|
||||
border-top: 1px solid hsl(0, 0%, 93%);
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
#settings_page .sidebar li.no-border {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
|
||||
<div class="sidebar-bottom-anchor dark-grey small-text">
|
||||
<ul>
|
||||
<li>
|
||||
<li class="border-top">
|
||||
<div class="icon icon-vector-off"></div>
|
||||
<a href="#logout" class="no-style logout_button"><div class="text">{{ _('Log out') }}</div></a>
|
||||
</li>
|
||||
|
|
Loading…
Reference in New Issue