feat(FN-3331): add New Chat button to thread header on desktop

Adds a New Chat button to the ChatView thread header on desktop with accompanying CSS styling and tests. The feature is scoped to the dashboard's chat interface with 62 lines of additions across the component, its stylesheet, and test file.

Fusion-Task-Id: FN-3331
This commit is contained in:
Fusion
2026-05-03 15:04:47 -07:00
committed by gsxdsm
parent 58e437babe
commit 0347bd4afe
3 changed files with 62 additions and 0 deletions

View File

@@ -214,6 +214,11 @@
font-size: 15px;
}
.chat-thread-header-new-chat {
margin-left: auto;
flex-shrink: 0;
}
/* Messages */
.chat-messages {
flex: 1;
@@ -1026,6 +1031,10 @@
flex-wrap: wrap;
}
.chat-thread-header-new-chat {
display: none;
}
.chat-session-delete-btn {
opacity: 1;
}