agentgui 1.0.767 → 1.0.768
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/static/css/main.css +6 -0
- package/static/index.html +4 -4
package/package.json
CHANGED
package/static/css/main.css
CHANGED
|
@@ -1156,6 +1156,12 @@
|
|
|
1156
1156
|
.message { max-width: 95%; }
|
|
1157
1157
|
.messages-wrapper { padding: 0.375rem 0.5rem; }
|
|
1158
1158
|
.input-section { padding: 0.5rem; padding-bottom: calc(0.5rem + env(safe-area-inset-bottom)); }
|
|
1159
|
+
.sidebar-header-actions { gap: 0.25rem; }
|
|
1160
|
+
.sidebar-clone-btn { font-size: 0.7rem; padding: 0.25rem 0.375rem; }
|
|
1161
|
+
.conversation-item-export,
|
|
1162
|
+
.conversation-item-archive { display: none; }
|
|
1163
|
+
.conversation-header h2 { font-size: 1.125rem; }
|
|
1164
|
+
.shortcuts-panel { padding: 1rem; }
|
|
1159
1165
|
}
|
|
1160
1166
|
|
|
1161
1167
|
/* ===== SCROLLBAR STYLING ===== */
|
package/static/index.html
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
|
|
31
31
|
<div class="app-shell">
|
|
32
32
|
<!-- ===== SIDEBAR ===== -->
|
|
33
|
-
<aside class="sidebar" data-sidebar>
|
|
33
|
+
<aside class="sidebar" data-sidebar role="navigation" aria-label="Conversation history">
|
|
34
34
|
<div class="sidebar-header">
|
|
35
35
|
<h2>History</h2>
|
|
36
36
|
<div class="sidebar-header-actions">
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
</div>
|
|
41
41
|
</div>
|
|
42
42
|
<div class="sidebar-search-bar" id="sidebarSearchBar">
|
|
43
|
-
<input type="text" class="sidebar-search-input" id="sidebarSearchInput" placeholder="Search conversations..." autocomplete="off" spellcheck="false">
|
|
43
|
+
<input type="text" class="sidebar-search-input" id="sidebarSearchInput" placeholder="Search conversations..." autocomplete="off" spellcheck="false" aria-label="Search conversations">
|
|
44
44
|
</div>
|
|
45
45
|
<div class="clone-input-bar" id="cloneInputBar" style="display:none;">
|
|
46
46
|
<input type="text" class="clone-input" id="cloneRepoInput" placeholder="org/repo" autocomplete="off" spellcheck="false">
|
|
47
47
|
<button class="clone-go-btn" id="cloneGoBtn" title="Clone">Go</button>
|
|
48
48
|
<button class="clone-cancel-btn" id="cloneCancelBtn" title="Cancel">×</button>
|
|
49
49
|
</div>
|
|
50
|
-
<ul class="sidebar-list" data-conversation-list>
|
|
50
|
+
<ul class="sidebar-list" data-conversation-list role="listbox" aria-label="Conversations">
|
|
51
51
|
<li class="sidebar-empty" data-conversation-empty>Loading...</li>
|
|
52
52
|
</ul>
|
|
53
53
|
<!-- PM2 Monitor Panel: hidden until active processes detected -->
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
</aside>
|
|
64
64
|
|
|
65
65
|
<!-- ===== MAIN PANEL ===== -->
|
|
66
|
-
<main id="app" class="main-panel">
|
|
66
|
+
<main id="app" class="main-panel" role="main" aria-label="Conversation">
|
|
67
67
|
<!-- Header bar -->
|
|
68
68
|
<div class="main-header">
|
|
69
69
|
<button class="sidebar-toggle-btn" data-sidebar-toggle title="Toggle sidebar (Ctrl+B)" aria-label="Toggle sidebar">
|