mirror of https://github.com/zulip/zulip.git
message_feed_ui: Increase contrast on msg divider elements.
Increase contrast on date dividers, msg times and sub/unsub msg. Some text in the message feed UI has been percieved as too dimmed. This commit aims to increase the contrast on some elements to counter this. Remove border-top from date-divider so that the line is of 1px.
This commit is contained in:
parent
b746823e2e
commit
d9874b1e2d
|
@ -1337,7 +1337,8 @@
|
|||
.date_row span::after,
|
||||
.streams_subheader span::before,
|
||||
.streams_subheader span::after {
|
||||
opacity: 0.2;
|
||||
opacity: 0.5;
|
||||
border-bottom: 1px solid hsl(0, 0%, 100%);
|
||||
}
|
||||
|
||||
.star:not(.empty-star),
|
||||
|
|
|
@ -2559,7 +2559,7 @@ select.invite-as {
|
|||
|
||||
.sub-unsub-message .stream-status,
|
||||
.date_row span {
|
||||
opacity: 0.5;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.sub-unsub-message span {
|
||||
|
@ -2577,8 +2577,8 @@ select.invite-as {
|
|||
vertical-align: middle;
|
||||
width: 50%;
|
||||
height: 0;
|
||||
border-top: 1px solid hsl(0, 0%, 88%);
|
||||
border-bottom: 1px solid hsl(0, 0%, 100%);
|
||||
opacity: 0.2;
|
||||
border-bottom: 1px solid hsl(0, 0%, 0%);
|
||||
}
|
||||
|
||||
.sub-unsub-message span::before,
|
||||
|
|
Loading…
Reference in New Issue