mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
UX: chat index mini refactor (#29082)
This commit is contained in:
parent
514c543cd4
commit
c13ca6eb19
@ -34,7 +34,6 @@
|
|||||||
@import "chat-reply";
|
@import "chat-reply";
|
||||||
@import "chat-replying-indicator";
|
@import "chat-replying-indicator";
|
||||||
@import "chat-selection-manager";
|
@import "chat-selection-manager";
|
||||||
@import "chat-side-panel";
|
|
||||||
@import "chat-skeleton";
|
@import "chat-skeleton";
|
||||||
@import "chat-thread";
|
@import "chat-thread";
|
||||||
@import "chat-side-panel-resizer";
|
@import "chat-side-panel-resizer";
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#main-chat-outlet.chat-view {
|
#main-chat-outlet.chat-view {
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-rows: 100%;
|
|
||||||
grid-template-areas: "main threads";
|
grid-template-areas: "main threads";
|
||||||
grid-template-columns: 1fr auto;
|
grid-template-columns: 1fr auto;
|
||||||
}
|
}
|
@ -8,4 +8,5 @@
|
|||||||
@import "chat-channel-info";
|
@import "chat-channel-info";
|
||||||
@import "chat-message-creator";
|
@import "chat-message-creator";
|
||||||
@import "chat-message-thread-indicator";
|
@import "chat-message-thread-indicator";
|
||||||
|
@import "chat-side-panel";
|
||||||
@import "sidebar-extensions";
|
@import "sidebar-extensions";
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
.full-page-chat {
|
.full-page-chat {
|
||||||
#main-chat-outlet.chat-view {
|
#main-chat-outlet.chat-view {
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: 1fr auto;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
"list"
|
"list"
|
||||||
"footer";
|
"footer";
|
||||||
|
@ -6,6 +6,10 @@
|
|||||||
.chat-channel-name {
|
.chat-channel-name {
|
||||||
font-size: var(--font-up-1-rem);
|
font-size: var(--font-up-1-rem);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.chat-channel-row:last-of-type {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.c-routes.--direct-messages,
|
.c-routes.--direct-messages,
|
||||||
@ -13,4 +17,5 @@
|
|||||||
.c-routes.--threads {
|
.c-routes.--threads {
|
||||||
background: var(--primary-very-low);
|
background: var(--primary-very-low);
|
||||||
max-width: 100vw;
|
max-width: 100vw;
|
||||||
|
padding-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
.chat-side-panel {
|
|
||||||
border-left: 0;
|
|
||||||
}
|
|
@ -8,7 +8,6 @@
|
|||||||
@import "chat-selection-manager";
|
@import "chat-selection-manager";
|
||||||
@import "chat-emoji-picker";
|
@import "chat-emoji-picker";
|
||||||
@import "chat-composer-upload";
|
@import "chat-composer-upload";
|
||||||
@import "chat-side-panel";
|
|
||||||
@import "chat-thread";
|
@import "chat-thread";
|
||||||
@import "chat-threads-list";
|
@import "chat-threads-list";
|
||||||
@import "chat-message-thread-indicator";
|
@import "chat-message-thread-indicator";
|
||||||
|
Loading…
Reference in New Issue
Block a user