@zolomedia/bifrost-client 1.7.79 → 1.7.80
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 +15 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zolomedia/bifrost-client",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.80",
|
|
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
|
@@ -1055,6 +1055,7 @@ zNavBar .zNav-link.active {
|
|
|
1055
1055
|
.zText-dark { color: #f9fafb; }
|
|
1056
1056
|
.zBorder { border: 1px solid rgba(255, 255, 255, 0.12); }
|
|
1057
1057
|
.zShadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }
|
|
1058
|
+
.zBg-white { background: rgba(255, 255, 255, 0.04); }
|
|
1058
1059
|
.zText-center { text-align: center !important; }
|
|
1059
1060
|
.zText-start { text-align: left !important; }
|
|
1060
1061
|
.zText-end { text-align: right !important; }
|
|
@@ -1117,6 +1118,12 @@ zNavBar .zNav-link.active {
|
|
|
1117
1118
|
opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; filter: none;
|
|
1118
1119
|
}
|
|
1119
1120
|
|
|
1121
|
+
/* Generic disabled — covers outline/plain buttons (e.g. paging First/Prev at edge)
|
|
1122
|
+
* so a disabled control always reads as muted and never out-ranks an active one. */
|
|
1123
|
+
.zBtn:disabled, .zBtn[disabled] {
|
|
1124
|
+
opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1120
1127
|
/* SSOT fills — keyed to --color-* (same tokens/hexes as .zText-*), so a button
|
|
1121
1128
|
* matches a heading of the same color name. Dark text on the light hues
|
|
1122
1129
|
* (primary/success/warning/info), white on the deep ones (secondary/danger). */
|
|
@@ -1138,8 +1145,16 @@ zNavBar .zNav-link.active {
|
|
|
1138
1145
|
.zBtn-outline-success,
|
|
1139
1146
|
.zBtn-outline-warning,
|
|
1140
1147
|
.zBtn-outline-info {
|
|
1148
|
+
display: inline-flex;
|
|
1149
|
+
align-items: center;
|
|
1150
|
+
justify-content: center;
|
|
1151
|
+
gap: 0.35rem;
|
|
1152
|
+
font-family: inherit;
|
|
1153
|
+
font-weight: 600;
|
|
1154
|
+
line-height: 1.4;
|
|
1141
1155
|
background: transparent;
|
|
1142
1156
|
border-color: currentColor;
|
|
1157
|
+
transition: background 0.15s ease, transform 0.08s ease;
|
|
1143
1158
|
}
|
|
1144
1159
|
.zBtn-outline-primary { color: var(--color-primary, #A2D46E); }
|
|
1145
1160
|
.zBtn-outline-secondary { color: var(--color-secondary, #9370DB); }
|