mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
07e1b0591f
- s/chat-msg-actions/chat-message-actions - s/chat-msgactions-hover/chat-message-actions-container - creates dedicated css files for this component - removes useless code - removes grayscale
18 lines
377 B
SCSS
18 lines
377 B
SCSS
.chat-message-actions {
|
|
.react-btn,
|
|
.reply-btn,
|
|
.bookmark-btn {
|
|
border: 1px solid transparent;
|
|
border-bottom-color: var(--primary-low);
|
|
border-radius: 0;
|
|
border-top-color: var(--primary-low);
|
|
|
|
&:hover {
|
|
background: var(--primary-low);
|
|
border-color: var(--primary-low-mid);
|
|
color: var(--primary-medium);
|
|
z-index: 1;
|
|
}
|
|
}
|
|
}
|