mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 18:50:53 +08:00
0a5f548635
As part of this move, we are also renaming `discourse-chat` to `chat`.
34 lines
636 B
SCSS
34 lines
636 B
SCSS
.chat-message-left-gutter {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
flex-shrink: 0;
|
|
width: var(--message-left-width);
|
|
}
|
|
|
|
.chat-message-left-gutter__date {
|
|
color: var(--primary-high);
|
|
font-size: var(--font-down-1);
|
|
|
|
&:hover,
|
|
&:focus {
|
|
.chat-time {
|
|
color: var(--primary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.chat-message-left-gutter__flag {
|
|
color: var(--secondary-medium);
|
|
padding-left: calc(50% - 15px);
|
|
}
|
|
|
|
.chat-message-left-gutter__bookmark {
|
|
.d-icon-discourse-bookmark-clock,
|
|
.d-icon-bookmark {
|
|
color: var(--primary-low-mid);
|
|
font-size: var(--font-down-2);
|
|
margin-left: 0.5em;
|
|
}
|
|
}
|