mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 15:33:41 +08:00
60 lines
1.1 KiB
SCSS
60 lines
1.1 KiB
SCSS
@import "common/foundation/mixins";
|
|
|
|
.full-page-chat {
|
|
overflow: hidden; //prevents double scroll
|
|
|
|
.channels-list {
|
|
overflow-y: overlay;
|
|
padding-bottom: 6rem;
|
|
box-sizing: border-box;
|
|
|
|
.channels-list-container {
|
|
background: var(--secondary);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.chat-channel-divider {
|
|
font-size: var(--font-up-1);
|
|
|
|
&:first-of-type {
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
.channel-title {
|
|
color: var(--quaternary);
|
|
font-size: var(--font-down-1);
|
|
}
|
|
}
|
|
|
|
.chat-user-avatar {
|
|
+ .chat-channel-title__usernames {
|
|
margin-left: 1rem;
|
|
}
|
|
}
|
|
|
|
.chat-channel-title {
|
|
&__users-count {
|
|
font-size: var(--font-up-2);
|
|
& + .chat-channel-title__name {
|
|
margin-left: 1rem;
|
|
}
|
|
}
|
|
|
|
&__name {
|
|
margin-left: 0.75em;
|
|
font-size: var(--font-up-1);
|
|
}
|
|
|
|
&__category-badge {
|
|
font-size: var(--font-up-1);
|
|
}
|
|
|
|
&__user-status-message {
|
|
flex-shrink: 3;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|
|
}
|