SimpleChatTCRV:UICleanup: new icons short texts, tighter buttons
Update usage note wrt new icons.
This commit is contained in:
parent
ae3d4fa96d
commit
720818f8e7
|
|
@ -26,9 +26,9 @@
|
|||
<div class="sameline" id="heading">
|
||||
<div id="sessions-div" class="flex-grow"></div>
|
||||
<div id="icons-div" class="flex-nogrow">
|
||||
<button id="sessionsprompts" title="system prompts">✨ 🤖 🧠</button>
|
||||
<button id="clearchat" title="clear current chat">🗑 🧽 🌀 </button>
|
||||
<button id="settings" title="change settings">⚙ 🛠 ️</button>
|
||||
<button id="sessionsprompts" title="system prompts">🤖prompt</button>
|
||||
<button id="clearchat" title="clear current chat">🌀clear</button>
|
||||
<button id="settings" title="change settings">⚙</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,14 @@ body {
|
|||
margin: 0;
|
||||
}
|
||||
#sessions-div {
|
||||
display: flex;
|
||||
gap: 0.4vmin;
|
||||
overflow: auto;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
#icons-div {
|
||||
display: flex;
|
||||
gap: 0.4vmin;
|
||||
}
|
||||
|
||||
.session-selected {
|
||||
|
|
@ -199,9 +206,9 @@ body {
|
|||
}
|
||||
|
||||
button {
|
||||
padding-inline: 2vmin;
|
||||
padding-inline: 1vmin;
|
||||
border-radius: 1vmin;
|
||||
min-height: 3vmin;
|
||||
min-height: 2vmin;
|
||||
border-color: #80A0E0;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -442,7 +442,8 @@ function usage_note(sRecentUserMsgCnt) {
|
|||
<details id="DefaultUsage">
|
||||
<summary class="role-system">Usage Note</summary>
|
||||
<ul class="ul1">
|
||||
<li> Clicking chat icon, toggles chat session buttons and system prompt block </li>
|
||||
<li> New button creates new chat session, with its own system prompt.</li>
|
||||
<li> Prompt button toggles system prompt entry.</li>
|
||||
<li> System prompt above, helps control ai response characteristics.</li>
|
||||
<ul class="ul2">
|
||||
<li> Completion mode - no system prompt normally.</li>
|
||||
|
|
@ -1762,7 +1763,7 @@ class MultiChatUI {
|
|||
this.new_chat_session(chatIdGot, true);
|
||||
this.create_session_btn(elDiv, chatIdGot);
|
||||
ui.el_children_config_class(elDiv, chatIdGot, "session-selected", "");
|
||||
},"NewChat", "+");
|
||||
},"NewChat", "+ new");
|
||||
btnNew.title = "start a new chat session"
|
||||
elDiv.appendChild(btnNew);
|
||||
// Btns for existing chat sessions
|
||||
|
|
|
|||
Loading…
Reference in New Issue