UX: chat index mini refactor (#29082)

This commit is contained in:
chapoi 2024-10-04 14:10:36 +02:00 committed by GitHub
parent 514c543cd4
commit c13ca6eb19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 8 additions and 6 deletions

View File

@ -34,7 +34,6 @@
@import "chat-reply";
@import "chat-replying-indicator";
@import "chat-selection-manager";
@import "chat-side-panel";
@import "chat-skeleton";
@import "chat-thread";
@import "chat-side-panel-resizer";

View File

@ -1,7 +1,6 @@
#main-chat-outlet.chat-view {
min-height: 0;
display: grid;
grid-template-rows: 100%;
grid-template-areas: "main threads";
grid-template-columns: 1fr auto;
}

View File

@ -8,4 +8,5 @@
@import "chat-channel-info";
@import "chat-message-creator";
@import "chat-message-thread-indicator";
@import "chat-side-panel";
@import "sidebar-extensions";

View File

@ -1,5 +1,7 @@
.full-page-chat {
#main-chat-outlet.chat-view {
display: grid;
grid-template-rows: 1fr auto;
grid-template-areas:
"list"
"footer";

View File

@ -6,6 +6,10 @@
.chat-channel-name {
font-size: var(--font-up-1-rem);
}
.chat-channel-row:last-of-type {
border-bottom: 0;
}
}
.c-routes.--direct-messages,
@ -13,4 +17,5 @@
.c-routes.--threads {
background: var(--primary-very-low);
max-width: 100vw;
padding-bottom: 1rem;
}

View File

@ -1,3 +0,0 @@
.chat-side-panel {
border-left: 0;
}

View File

@ -8,7 +8,6 @@
@import "chat-selection-manager";
@import "chat-emoji-picker";
@import "chat-composer-upload";
@import "chat-side-panel";
@import "chat-thread";
@import "chat-threads-list";
@import "chat-message-thread-indicator";