@agent-link/server 0.1.98 → 0.1.99
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/web/style.css +51 -38
package/package.json
CHANGED
package/web/style.css
CHANGED
|
@@ -17,19 +17,19 @@
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
:root {
|
|
20
|
-
--bg-primary: #
|
|
21
|
-
--bg-secondary: #
|
|
22
|
-
--bg-tertiary: #
|
|
23
|
-
--text-primary: #
|
|
24
|
-
--text-secondary: #
|
|
25
|
-
--accent: #
|
|
26
|
-
--accent-hover: #
|
|
27
|
-
--success: #
|
|
28
|
-
--warning: #
|
|
29
|
-
--error: #
|
|
30
|
-
--border: #
|
|
31
|
-
--code-bg: #
|
|
32
|
-
--code-header-bg: #
|
|
20
|
+
--bg-primary: #1e1e1e;
|
|
21
|
+
--bg-secondary: #252525;
|
|
22
|
+
--bg-tertiary: #2f2f2f;
|
|
23
|
+
--text-primary: #d4d4d4;
|
|
24
|
+
--text-secondary: #858585;
|
|
25
|
+
--accent: #6b9fce;
|
|
26
|
+
--accent-hover: #5a8bba;
|
|
27
|
+
--success: #4ead6a;
|
|
28
|
+
--warning: #d4a24c;
|
|
29
|
+
--error: #d45454;
|
|
30
|
+
--border: #353535;
|
|
31
|
+
--code-bg: #1a1a1a;
|
|
32
|
+
--code-header-bg: #222222;
|
|
33
33
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
|
|
34
34
|
}
|
|
35
35
|
|
|
@@ -188,33 +188,33 @@ body {
|
|
|
188
188
|
|
|
189
189
|
.badge.connected {
|
|
190
190
|
color: var(--success);
|
|
191
|
-
background: rgba(
|
|
191
|
+
background: rgba(78, 173, 106, 0.1);
|
|
192
192
|
}
|
|
193
193
|
|
|
194
194
|
.badge.disconnected {
|
|
195
195
|
color: var(--error);
|
|
196
|
-
background: rgba(
|
|
196
|
+
background: rgba(212, 84, 84, 0.1);
|
|
197
197
|
}
|
|
198
198
|
|
|
199
199
|
.badge.connecting\.\.\. {
|
|
200
200
|
color: var(--warning);
|
|
201
|
-
background: rgba(
|
|
201
|
+
background: rgba(212, 162, 76, 0.1);
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
.badge.reconnecting\.\.\. {
|
|
205
205
|
color: var(--warning);
|
|
206
|
-
background: rgba(
|
|
206
|
+
background: rgba(212, 162, 76, 0.1);
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
.badge.waiting {
|
|
210
210
|
color: var(--warning);
|
|
211
|
-
background: rgba(
|
|
211
|
+
background: rgba(212, 162, 76, 0.1);
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
.badge.error,
|
|
215
215
|
.badge.no\ session {
|
|
216
216
|
color: var(--error);
|
|
217
|
-
background: rgba(
|
|
217
|
+
background: rgba(212, 84, 84, 0.1);
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
.error-msg {
|
|
@@ -348,7 +348,7 @@ body {
|
|
|
348
348
|
}
|
|
349
349
|
.workdir-history-delete:hover {
|
|
350
350
|
color: var(--error);
|
|
351
|
-
background: rgba(
|
|
351
|
+
background: rgba(212, 84, 84, 0.1);
|
|
352
352
|
}
|
|
353
353
|
|
|
354
354
|
.sidebar-sessions {
|
|
@@ -539,7 +539,7 @@ body {
|
|
|
539
539
|
|
|
540
540
|
.session-delete-btn:hover {
|
|
541
541
|
color: var(--error);
|
|
542
|
-
background: rgba(
|
|
542
|
+
background: rgba(212, 84, 84, 0.1);
|
|
543
543
|
}
|
|
544
544
|
|
|
545
545
|
/* ── Rename session (pencil icon + inline edit) ── */
|
|
@@ -560,7 +560,7 @@ body {
|
|
|
560
560
|
|
|
561
561
|
.session-rename-btn:hover {
|
|
562
562
|
color: var(--accent);
|
|
563
|
-
background: rgba(
|
|
563
|
+
background: rgba(107, 159, 206, 0.12);
|
|
564
564
|
}
|
|
565
565
|
|
|
566
566
|
.session-rename-row {
|
|
@@ -661,7 +661,7 @@ body {
|
|
|
661
661
|
}
|
|
662
662
|
|
|
663
663
|
.delete-confirm-btn:hover {
|
|
664
|
-
background: #
|
|
664
|
+
background: #c04444;
|
|
665
665
|
}
|
|
666
666
|
|
|
667
667
|
/* ── Auth Dialog ── */
|
|
@@ -1002,6 +1002,19 @@ body {
|
|
|
1002
1002
|
padding: 0.8em;
|
|
1003
1003
|
}
|
|
1004
1004
|
|
|
1005
|
+
.markdown-body a {
|
|
1006
|
+
color: #7aafe0;
|
|
1007
|
+
text-decoration: none;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
.markdown-body a:hover {
|
|
1011
|
+
text-decoration: underline;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
[data-theme="light"] .markdown-body a {
|
|
1015
|
+
color: #2563eb;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1005
1018
|
.markdown-body blockquote {
|
|
1006
1019
|
border-left: 3px solid var(--border);
|
|
1007
1020
|
padding-left: 0.8em;
|
|
@@ -1262,7 +1275,7 @@ body {
|
|
|
1262
1275
|
}
|
|
1263
1276
|
|
|
1264
1277
|
.todo-icon.active {
|
|
1265
|
-
color:
|
|
1278
|
+
color: var(--accent);
|
|
1266
1279
|
opacity: 1;
|
|
1267
1280
|
font-size: 0.55rem;
|
|
1268
1281
|
}
|
|
@@ -1297,7 +1310,7 @@ body {
|
|
|
1297
1310
|
}
|
|
1298
1311
|
|
|
1299
1312
|
.tool-link {
|
|
1300
|
-
color:
|
|
1313
|
+
color: var(--accent);
|
|
1301
1314
|
font-size: 0.75rem;
|
|
1302
1315
|
word-break: break-all;
|
|
1303
1316
|
text-decoration: none;
|
|
@@ -1352,13 +1365,13 @@ body {
|
|
|
1352
1365
|
}
|
|
1353
1366
|
|
|
1354
1367
|
.diff-removed {
|
|
1355
|
-
background: rgba(
|
|
1356
|
-
color: #
|
|
1368
|
+
background: rgba(212, 84, 84, 0.12);
|
|
1369
|
+
color: #d4716b;
|
|
1357
1370
|
}
|
|
1358
1371
|
|
|
1359
1372
|
.diff-added {
|
|
1360
|
-
background: rgba(
|
|
1361
|
-
color: #
|
|
1373
|
+
background: rgba(78, 173, 106, 0.12);
|
|
1374
|
+
color: #5cb87a;
|
|
1362
1375
|
}
|
|
1363
1376
|
|
|
1364
1377
|
.diff-sign {
|
|
@@ -1441,7 +1454,7 @@ body {
|
|
|
1441
1454
|
|
|
1442
1455
|
.ask-question-option.selected {
|
|
1443
1456
|
border-color: var(--accent);
|
|
1444
|
-
background: rgba(
|
|
1457
|
+
background: rgba(107, 159, 206, 0.12);
|
|
1445
1458
|
}
|
|
1446
1459
|
|
|
1447
1460
|
.ask-option-label {
|
|
@@ -1594,9 +1607,9 @@ body {
|
|
|
1594
1607
|
.system-msg.error-msg {
|
|
1595
1608
|
text-align: left;
|
|
1596
1609
|
font-style: normal;
|
|
1597
|
-
color: #
|
|
1598
|
-
background: rgba(
|
|
1599
|
-
border: 1px solid rgba(
|
|
1610
|
+
color: #d45454;
|
|
1611
|
+
background: rgba(212, 84, 84, 0.08);
|
|
1612
|
+
border: 1px solid rgba(212, 84, 84, 0.2);
|
|
1600
1613
|
border-radius: 8px;
|
|
1601
1614
|
padding: 0.75rem 1rem;
|
|
1602
1615
|
font-size: 0.85rem;
|
|
@@ -1691,7 +1704,7 @@ body {
|
|
|
1691
1704
|
display: inline-block;
|
|
1692
1705
|
width: 12px;
|
|
1693
1706
|
height: 12px;
|
|
1694
|
-
border: 2px solid rgba(
|
|
1707
|
+
border: 2px solid rgba(212, 162, 76, 0.3);
|
|
1695
1708
|
border-top-color: var(--warning);
|
|
1696
1709
|
border-radius: 50%;
|
|
1697
1710
|
animation: spin 0.8s linear infinite;
|
|
@@ -1699,7 +1712,7 @@ body {
|
|
|
1699
1712
|
}
|
|
1700
1713
|
|
|
1701
1714
|
.compact-done-icon {
|
|
1702
|
-
color: var(--success, #
|
|
1715
|
+
color: var(--success, #4ead6a);
|
|
1703
1716
|
font-weight: 700;
|
|
1704
1717
|
font-style: normal;
|
|
1705
1718
|
}
|
|
@@ -1725,7 +1738,7 @@ body {
|
|
|
1725
1738
|
|
|
1726
1739
|
.input-card:focus-within {
|
|
1727
1740
|
border-color: var(--accent);
|
|
1728
|
-
box-shadow: 0 2px 16px rgba(
|
|
1741
|
+
box-shadow: 0 2px 16px rgba(107, 159, 206, 0.1);
|
|
1729
1742
|
}
|
|
1730
1743
|
|
|
1731
1744
|
.input-card textarea {
|
|
@@ -1785,7 +1798,7 @@ body {
|
|
|
1785
1798
|
}
|
|
1786
1799
|
|
|
1787
1800
|
.stop-btn:hover {
|
|
1788
|
-
background: #
|
|
1801
|
+
background: #c04444;
|
|
1789
1802
|
}
|
|
1790
1803
|
|
|
1791
1804
|
/* ── Streaming cursor ── */
|
|
@@ -2144,7 +2157,7 @@ body {
|
|
|
2144
2157
|
/* ── Drag-over highlight on input card ── */
|
|
2145
2158
|
.input-card.drag-over {
|
|
2146
2159
|
border-color: var(--accent);
|
|
2147
|
-
box-shadow: 0 0 0 2px var(--accent), 0 2px 12px rgba(
|
|
2160
|
+
box-shadow: 0 0 0 2px var(--accent), 0 2px 12px rgba(107, 159, 206, 0.12);
|
|
2148
2161
|
}
|
|
2149
2162
|
|
|
2150
2163
|
/* ── Attachments displayed in sent messages ── */
|