- Chat messages are now loaded based on scroll position - Read status is now updated and set by last message read - Reworked script importing by using ScriptProvider
24 lines
No EOL
425 B
SCSS
24 lines
No EOL
425 B
SCSS
.chat-thread {
|
|
height: 100%;
|
|
flex-grow: 1;
|
|
background: #141414;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 0;
|
|
}
|
|
|
|
.chat-thread-messages {
|
|
flex: 1 1 0;
|
|
min-height: 0;
|
|
padding: 1em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
|
|
.infinite-scroll {
|
|
flex: 1 1 0;
|
|
min-height: 0;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
} |