@zolomedia/bifrost-client 1.7.84 → 1.7.85
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 +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zolomedia/bifrost-client",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.85",
|
|
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,7 +323,7 @@ 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
|
}
|
|
@@ -335,7 +336,7 @@ input[type="file"].zInput {
|
|
|
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
|
}
|
|
@@ -594,7 +595,7 @@ select.zForm-control[multiple] option:checked {
|
|
|
594
595
|
background: linear-gradient(var(--color-primary), var(--color-primary));
|
|
595
596
|
}
|
|
596
597
|
select.zSelect[multiple] option:disabled,
|
|
597
|
-
select.zForm-control[multiple] option:disabled { color: var(--zinput-placeholder,
|
|
598
|
+
select.zForm-control[multiple] option:disabled { color: var(--zinput-placeholder, var(--ink-faint)); }
|
|
598
599
|
|
|
599
600
|
/* size variants */
|
|
600
601
|
select.zSelect.zSelect-lg { padding-top: 0.7rem; padding-bottom: 0.7rem; font-size: 1.05rem; }
|
|
@@ -1650,7 +1651,7 @@ zNavBar .zNav-link.active {
|
|
|
1650
1651
|
margin-bottom: 0.4rem;
|
|
1651
1652
|
}
|
|
1652
1653
|
.zProgress-container .zFw-bold { font-weight: 600; color: var(--zprogress-label, var(--ink)); }
|
|
1653
|
-
.zProgress-container .zText-muted { color: var(--zprogress-info,
|
|
1654
|
+
.zProgress-container .zText-muted { color: var(--zprogress-info, var(--ink-muted)); }
|
|
1654
1655
|
|
|
1655
1656
|
/* Track — the rail behind the fill. Inset shadow gives the pill real depth. */
|
|
1656
1657
|
.zProgress {
|