@floless/app 0.16.1 → 0.16.2
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/dist/floless-server.cjs +2 -2
- package/dist/web/app.css +18 -2
- package/package.json +1 -1
package/dist/floless-server.cjs
CHANGED
|
@@ -52666,7 +52666,7 @@ function appVersion() {
|
|
|
52666
52666
|
return resolveVersion({
|
|
52667
52667
|
isSea: isSea2(),
|
|
52668
52668
|
sqVersionXml: readSqVersionXml(),
|
|
52669
|
-
define: true ? "0.16.
|
|
52669
|
+
define: true ? "0.16.2" : void 0,
|
|
52670
52670
|
pkgVersion: readPkgVersion()
|
|
52671
52671
|
});
|
|
52672
52672
|
}
|
|
@@ -52676,7 +52676,7 @@ function resolveChannel(s) {
|
|
|
52676
52676
|
return "dev";
|
|
52677
52677
|
}
|
|
52678
52678
|
function appChannel() {
|
|
52679
|
-
return resolveChannel({ isSea: isSea2(), define: true ? "0.16.
|
|
52679
|
+
return resolveChannel({ isSea: isSea2(), define: true ? "0.16.2" : void 0 });
|
|
52680
52680
|
}
|
|
52681
52681
|
|
|
52682
52682
|
// oauth-presets.ts
|
package/dist/web/app.css
CHANGED
|
@@ -367,6 +367,17 @@
|
|
|
367
367
|
}
|
|
368
368
|
/* (the grabbing cursor during a pan is already forced by `.canvas.panning *` above) */
|
|
369
369
|
|
|
370
|
+
/* Canvas chrome (top label, bottom hint + Templates bar) paints ABOVE the
|
|
371
|
+
transform-panned topology with an OPAQUE background, so dragging the canvas
|
|
372
|
+
slides node cards cleanly BEHIND the chrome instead of overlapping it. The
|
|
373
|
+
toolbar already does this via its own z-index. */
|
|
374
|
+
.canvas > .panel-label,
|
|
375
|
+
.canvas > .hint { position: relative; z-index: 6; background: var(--bg); }
|
|
376
|
+
/* fav-bar is already opaque (surface); the notes pill stays translucent by design
|
|
377
|
+
— both just need to paint ABOVE the panned content (the notes stay readable). */
|
|
378
|
+
.canvas > .fav-bar,
|
|
379
|
+
.canvas > .notes-strip { position: relative; z-index: 6; }
|
|
380
|
+
|
|
370
381
|
/* LINEAR */
|
|
371
382
|
.topology:not(.dag) .agent-card { flex: 0 0 210px; }
|
|
372
383
|
|
|
@@ -572,7 +583,10 @@
|
|
|
572
583
|
border-top: 1px dashed var(--border-strong);
|
|
573
584
|
padding-top: 8px;
|
|
574
585
|
}
|
|
575
|
-
|
|
586
|
+
/* The "inspect ▸" hint is the explicit affordance that opens the Inspect panel —
|
|
587
|
+
read it as a button: pointer cursor + brighten/underline on hover. */
|
|
588
|
+
.agent-card .inspect-hint { color: var(--accent); opacity: 0.6; cursor: pointer; transition: opacity 0.12s; }
|
|
589
|
+
.agent-card .inspect-hint:hover { opacity: 1; text-decoration: underline; }
|
|
576
590
|
.agent-card.selected .inspect-hint { opacity: 1; }
|
|
577
591
|
|
|
578
592
|
/* LINEAR WIRES */
|
|
@@ -1515,7 +1529,9 @@
|
|
|
1515
1529
|
left: 14px;
|
|
1516
1530
|
display: flex;
|
|
1517
1531
|
gap: 8px;
|
|
1518
|
-
z-index:
|
|
1532
|
+
/* Above the canvas chrome (z-index:6) — it overlaps the hint band, and must
|
|
1533
|
+
stay fully visible/clickable (it's the always-on zoom + Fit control). */
|
|
1534
|
+
z-index: 7;
|
|
1519
1535
|
}
|
|
1520
1536
|
.toolbar-group {
|
|
1521
1537
|
display: flex;
|