mirror of https://github.com/zulip/zulip.git
user_circles: Fix bug causing incorrect colors in typeahead.
c39ae45d95
was incorrect, and should
only have been applied to the circles in the buddy list avatars.
In other places in the app, the transparency was over other colors
of background.
This commit is contained in:
parent
45d9c04e8e
commit
898af8a9af
|
@ -172,6 +172,18 @@ $user_status_emoji_width: 24px;
|
||||||
height: 0.4em;
|
height: 0.4em;
|
||||||
top: 1.6em;
|
top: 1.6em;
|
||||||
left: 1.6em;
|
left: 1.6em;
|
||||||
|
|
||||||
|
&.user_circle_idle {
|
||||||
|
background: linear-gradient(
|
||||||
|
to bottom,
|
||||||
|
var(--color-background) 50%,
|
||||||
|
var(--color-user-circle-idle) 50%
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.user_circle_empty {
|
||||||
|
background-color: var(--color-background);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.empty-list-message {
|
.empty-list-message {
|
||||||
|
|
|
@ -19,13 +19,13 @@
|
||||||
border-color: var(--color-user-circle-idle);
|
border-color: var(--color-user-circle-idle);
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
to bottom,
|
to bottom,
|
||||||
var(--color-background) 50%,
|
hsl(0deg 0% 100% / 0%) 50%,
|
||||||
var(--color-user-circle-idle) 50%
|
var(--color-user-circle-idle) 50%
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
.user_circle_empty {
|
.user_circle_empty {
|
||||||
background-color: var(--color-background);
|
background-color: transparent;
|
||||||
border-color: hsl(0deg 0% 50%);
|
border-color: hsl(0deg 0% 50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue