mirror of https://github.com/zulip/zulip.git
navbar: Use new purple icon color with left-sidebar toggle.
This also implements the same hover and focus-visible styles as icons on the righthand side of the navbar.
This commit is contained in:
parent
1f0e9b4587
commit
a9421f6ba0
|
@ -733,16 +733,10 @@
|
|||
color: hsl(236deg 33% 90%);
|
||||
}
|
||||
|
||||
#streamlist-toggle,
|
||||
#userlist-toggle {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
#streamlist-toggle-button {
|
||||
color: inherit;
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
#userlist-toggle-button {
|
||||
color: hsl(221deg 9% 54%);
|
||||
|
||||
|
|
|
@ -2286,12 +2286,29 @@ div.focused-message-list {
|
|||
|
||||
#streamlist-toggle-button {
|
||||
text-decoration: none;
|
||||
color: hsl(0deg 0% 52%);
|
||||
color: var(--color-navbar-icon);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--color-header-button-hover);
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: var(--color-header-button-focus);
|
||||
}
|
||||
|
||||
&:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
&:focus-visible {
|
||||
outline: none;
|
||||
background-color: var(--color-header-button-focus);
|
||||
}
|
||||
}
|
||||
|
||||
#streamlist-toggle-unreadcount {
|
||||
|
@ -2299,7 +2316,7 @@ div.focused-message-list {
|
|||
display: none;
|
||||
height: 6px;
|
||||
width: 6px;
|
||||
background-color: var(--color-background-unread-counter-dot);
|
||||
background-color: var(--color-navbar-icon);
|
||||
top: 10px;
|
||||
right: 9px;
|
||||
border: 2px solid var(--color-background-navbar);
|
||||
|
|
Loading…
Reference in New Issue