discourse/plugins/chat/assets/stylesheets/common/chat-unread-indicator.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
510 B
SCSS
Raw Normal View History

@mixin chat-unread-indicator {
@include unselectable;
width: 14px;
height: 14px;
border-radius: 1em;
box-sizing: content-box;
-webkit-touch-callout: none;
background: var(--tertiary-med-or-tertiary);
color: var(--secondary);
font-size: var(--font-down-2);
text-align: center;
transition: border-color linear 0.15s;
&.-urgent {
background: var(--success);
color: var(--secondary);
}
&__number {
color: var(--secondary);
line-height: var(--line-height-small);
}
}