@agent-link/server 0.1.96 → 0.1.97

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/web/style.css +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-link/server",
3
- "version": "0.1.96",
3
+ "version": "0.1.97",
4
4
  "description": "AgentLink relay server",
5
5
  "license": "MIT",
6
6
  "repository": {
package/web/style.css CHANGED
@@ -328,7 +328,7 @@ body {
328
328
  color: var(--text-primary);
329
329
  }
330
330
  .workdir-history-delete {
331
- display: none;
331
+ display: flex;
332
332
  align-items: center;
333
333
  justify-content: center;
334
334
  width: 18px;
@@ -341,9 +341,10 @@ body {
341
341
  padding: 0;
342
342
  flex-shrink: 0;
343
343
  transition: color 0.15s, background 0.15s;
344
+ visibility: hidden;
344
345
  }
345
346
  .workdir-history-item:hover .workdir-history-delete {
346
- display: flex;
347
+ visibility: visible;
347
348
  }
348
349
  .workdir-history-delete:hover {
349
350
  color: var(--error);
@@ -511,13 +512,14 @@ body {
511
512
  }
512
513
 
513
514
  .session-actions {
514
- display: none;
515
+ display: flex;
515
516
  align-items: center;
516
517
  gap: 2px;
518
+ visibility: hidden;
517
519
  }
518
520
 
519
521
  .session-item:hover .session-actions {
520
- display: flex;
522
+ visibility: visible;
521
523
  }
522
524
 
523
525
  .session-delete-btn {