agentgui 1.0.874 → 1.0.876
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/ui-fixes-4.css +15 -12
- package/static/js/tools-manager.js +1 -1
package/package.json
CHANGED
|
@@ -85,26 +85,29 @@ textarea:focus-visible {
|
|
|
85
85
|
outline-offset: 2px;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
/* ---------- Dark mode:
|
|
88
|
+
/* ---------- Dark mode: neutral grey palette ---------- */
|
|
89
89
|
html.dark {
|
|
90
90
|
--color-primary: #3b82f6;
|
|
91
91
|
--color-primary-dark: #2563eb;
|
|
92
|
-
--color-bg-primary: #
|
|
93
|
-
--color-bg-secondary: #
|
|
94
|
-
--color-bg-raised: #
|
|
95
|
-
--color-bg-hover: rgba(255,255,255,0.
|
|
96
|
-
--color-text-primary: #
|
|
97
|
-
--color-text-secondary: #
|
|
98
|
-
--color-border: #
|
|
92
|
+
--color-bg-primary: #1a1a1a;
|
|
93
|
+
--color-bg-secondary: #212121;
|
|
94
|
+
--color-bg-raised: #2a2a2a;
|
|
95
|
+
--color-bg-hover: rgba(255,255,255,0.06);
|
|
96
|
+
--color-text-primary: #e5e5e5;
|
|
97
|
+
--color-text-secondary: #a3a3a3;
|
|
98
|
+
--color-border: #333333;
|
|
99
|
+
--color-focus-ring: rgba(163,163,163,0.35);
|
|
99
100
|
}
|
|
100
101
|
html.dark body { background: var(--color-bg-primary); color: var(--color-text-primary); }
|
|
101
|
-
html.dark .sidebar { background: #
|
|
102
|
+
html.dark .sidebar { background: #161616; border-right: 1px solid var(--color-border); }
|
|
102
103
|
html.dark .main-header,
|
|
103
104
|
html.dark .view-toggle-bar,
|
|
104
105
|
html.dark .input-section { background: var(--color-bg-primary); }
|
|
105
|
-
html.dark .input-card { background: #
|
|
106
|
-
html.dark .input-chip-select { background: #
|
|
107
|
-
html.dark .status-badge { background: #
|
|
106
|
+
html.dark .input-card { background: #161616; border-color: var(--color-border); }
|
|
107
|
+
html.dark .input-chip-select { background: #161616; }
|
|
108
|
+
html.dark .status-badge { background: #161616; }
|
|
109
|
+
html.dark .sidebar-search-input { background: #161616; }
|
|
110
|
+
html.dark .conversation-item.active { background: #2f2f2f; color: var(--color-text-primary); }
|
|
108
111
|
html.dark .tools-popup,
|
|
109
112
|
html.dark .folder-modal-overlay { background: rgba(0,0,0,0.65); }
|
|
110
113
|
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
applyDiff(scroll, vnodes);
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
function togglePopup(e) { e.stopPropagation(); if (!popup.classList.contains('open')) { isRefreshing = false; refresh(); } popup.classList.toggle('open'); }
|
|
145
|
+
function togglePopup(e) { if (e) e.stopPropagation(); if (!popup.classList.contains('open')) { isRefreshing = false; refresh(); } popup.classList.toggle('open'); }
|
|
146
146
|
function closePopup() { popup.classList.remove('open'); }
|
|
147
147
|
function refresh() { fetchTools(); }
|
|
148
148
|
|