new chat icon
frdel committed
Jan 7, 2026 at 10:08 UTC
94a76cd4f08d8868abed0daad7d024db5f099b61
2 files changed
+5
-5
webui/components/sidebar/chats/chats-list.html
+4
-4
@@ -13,8 +13,8 @@
13
<div class="section-header-row">
14
<h3 class="section-header">Chats</h3>
15
<!-- New Chat Button -->
16
- <button id="newChat" @click="$store.chats.newChat()" aria-label="New Chat" title="New Chat" data-bs-placement="top" data-bs-trigger="hover">
17
- <span class="material-symbols-outlined">add_comment</span>
16
+ <button id="newChat" class="btn-icon-action chat-list-action-btn" @click="$store.chats.newChat()" aria-label="New Chat" title="New Chat" data-bs-placement="top" data-bs-trigger="hover">
17
+ <span class="material-symbols-outlined">edit_square</span>
18
</button>
19
</div>
20
@@ -31,7 +31,7 @@
31
<span class="chat-name" :title="context.name ? context.name : 'Chat #' + context.no"
32
x-text="context.name ? context.name : 'Chat #' + context.no"></span>
33
</div>
34
- <button class="btn-icon-action" title="Close chat" @click.stop="$confirmClick($event, () => $store.chats.killChat(context.id))">
34
+ <button class="btn-icon-action chat-list-action-btn" title="Close chat" @click.stop="$confirmClick($event, () => $store.chats.killChat(context.id))">
35
<span class="material-symbols-outlined">close</span>
36
</button>
37
</div>
@@ -129,7 +129,7 @@
129
font-size: var(--font-size-small);
130
}
131
132
- .chat-container .btn-icon-action {
132
+ .chat-list-action-btn {
133
flex-shrink: 0;
134
margin-right: 8px;
135
}
webui/components/sidebar/top-section/quick-actions.html
+1
-1
@@ -73,7 +73,7 @@
73
<div class="dropdown-header">Chat Actions</div>
74
75
<button class="dropdown-item" @click="$store.chats.newChat(); dropdownOpen = false">
76
- <span class="material-symbols-outlined">add_comment</span>
76
+ <span class="material-symbols-outlined">edit_square</span>
77
<span>New Chat</span>
78
</button>
79