@zolomedia/bifrost-client 1.7.84 → 1.7.86
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/zSys/theme/zbase.css +16 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zolomedia/bifrost-client",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.86",
|
|
4
4
|
"description": "Browser client for zBifrost — the WebSocket bridge that turns JSON events from a zOS server into live DOM. Thin bootstrap + server-controlled core.",
|
|
5
5
|
"homepage": "https://github.com/ZoloAi/zbifrost-client#readme",
|
|
6
6
|
"repository": {
|
package/zSys/theme/zbase.css
CHANGED
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
* Apps re-skin the whole chrome by redefining these once. */
|
|
39
39
|
--ink: #f9fafb; /* primary text on dark */
|
|
40
40
|
--ink-muted: rgba(255, 255, 255, 0.65); /* secondary / captions */
|
|
41
|
+
--ink-faint: rgba(255, 255, 255, 0.45); /* placeholders / hints */
|
|
41
42
|
--surface-1: rgba(255, 255, 255, 0.04); /* raised panel */
|
|
42
43
|
--surface-2: rgba(255, 255, 255, 0.08); /* input / hover fill */
|
|
43
44
|
--border: rgba(255, 255, 255, 0.12); /* hairline divider */
|
|
@@ -287,7 +288,7 @@ input.zInput, textarea.zInput, select.zInput {
|
|
|
287
288
|
}
|
|
288
289
|
|
|
289
290
|
.zForm-control::placeholder,
|
|
290
|
-
.zInput::placeholder { color: var(--zinput-placeholder,
|
|
291
|
+
.zInput::placeholder { color: var(--zinput-placeholder, var(--ink-faint)); }
|
|
291
292
|
|
|
292
293
|
.zForm-control:focus,
|
|
293
294
|
input.zInput:focus, textarea.zInput:focus, select.zInput:focus {
|
|
@@ -322,20 +323,20 @@ select.zForm-control, select.zInput { cursor: pointer; }
|
|
|
322
323
|
|
|
323
324
|
/* Required-field marker — red asterisk suffix on the label (SSOT). */
|
|
324
325
|
.zRequired {
|
|
325
|
-
color: var(--zrequired-color,
|
|
326
|
+
color: var(--zrequired-color, var(--color-error));
|
|
326
327
|
margin-left: 0.15rem;
|
|
327
328
|
font-weight: 600;
|
|
328
329
|
}
|
|
329
330
|
|
|
330
331
|
/* File selector — native file inputs (emitted as .zForm-control) styled to match
|
|
331
|
-
the theme: muted "no file" text +
|
|
332
|
+
the theme: muted "no file" text + a secondary-token pill for the browse button. */
|
|
332
333
|
input[type="file"].zForm-control,
|
|
333
334
|
input[type="file"].zInput {
|
|
334
335
|
display: block;
|
|
335
336
|
width: 100%;
|
|
336
337
|
padding: 0.5rem 0.65rem;
|
|
337
338
|
font-size: 0.9375rem;
|
|
338
|
-
color: var(--zinput-placeholder,
|
|
339
|
+
color: var(--zinput-placeholder, var(--ink-muted));
|
|
339
340
|
line-height: 1.6;
|
|
340
341
|
cursor: pointer;
|
|
341
342
|
}
|
|
@@ -399,14 +400,21 @@ input[type="month"].zForm-control::-webkit-calendar-picker-indicator,
|
|
|
399
400
|
input[type="week"].zForm-control::-webkit-calendar-picker-indicator,
|
|
400
401
|
input[type="date"].zInput::-webkit-calendar-picker-indicator,
|
|
401
402
|
input[type="time"].zInput::-webkit-calendar-picker-indicator,
|
|
402
|
-
input[type="datetime-local"].zInput::-webkit-calendar-picker-indicator
|
|
403
|
+
input[type="datetime-local"].zInput::-webkit-calendar-picker-indicator,
|
|
404
|
+
input[type="month"].zInput::-webkit-calendar-picker-indicator,
|
|
405
|
+
input[type="week"].zInput::-webkit-calendar-picker-indicator {
|
|
403
406
|
filter: var(--zinput-picker-filter, invert(0.85));
|
|
404
407
|
opacity: 0.75;
|
|
405
408
|
cursor: pointer;
|
|
406
409
|
}
|
|
407
410
|
input[type="date"].zForm-control::-webkit-calendar-picker-indicator:hover,
|
|
408
411
|
input[type="time"].zForm-control::-webkit-calendar-picker-indicator:hover,
|
|
409
|
-
input[type="datetime-local"].zForm-control::-webkit-calendar-picker-indicator:hover
|
|
412
|
+
input[type="datetime-local"].zForm-control::-webkit-calendar-picker-indicator:hover,
|
|
413
|
+
input[type="month"].zForm-control::-webkit-calendar-picker-indicator:hover,
|
|
414
|
+
input[type="week"].zForm-control::-webkit-calendar-picker-indicator:hover,
|
|
415
|
+
input[type="date"].zInput::-webkit-calendar-picker-indicator:hover,
|
|
416
|
+
input[type="time"].zInput::-webkit-calendar-picker-indicator:hover,
|
|
417
|
+
input[type="datetime-local"].zInput::-webkit-calendar-picker-indicator:hover {
|
|
410
418
|
opacity: 1;
|
|
411
419
|
}
|
|
412
420
|
|
|
@@ -594,7 +602,7 @@ select.zForm-control[multiple] option:checked {
|
|
|
594
602
|
background: linear-gradient(var(--color-primary), var(--color-primary));
|
|
595
603
|
}
|
|
596
604
|
select.zSelect[multiple] option:disabled,
|
|
597
|
-
select.zForm-control[multiple] option:disabled { color: var(--zinput-placeholder,
|
|
605
|
+
select.zForm-control[multiple] option:disabled { color: var(--zinput-placeholder, var(--ink-faint)); }
|
|
598
606
|
|
|
599
607
|
/* size variants */
|
|
600
608
|
select.zSelect.zSelect-lg { padding-top: 0.7rem; padding-bottom: 0.7rem; font-size: 1.05rem; }
|
|
@@ -1650,7 +1658,7 @@ zNavBar .zNav-link.active {
|
|
|
1650
1658
|
margin-bottom: 0.4rem;
|
|
1651
1659
|
}
|
|
1652
1660
|
.zProgress-container .zFw-bold { font-weight: 600; color: var(--zprogress-label, var(--ink)); }
|
|
1653
|
-
.zProgress-container .zText-muted { color: var(--zprogress-info,
|
|
1661
|
+
.zProgress-container .zText-muted { color: var(--zprogress-info, var(--ink-muted)); }
|
|
1654
1662
|
|
|
1655
1663
|
/* Track — the rail behind the fill. Inset shadow gives the pill real depth. */
|
|
1656
1664
|
.zProgress {
|