@zolomedia/bifrost-client 1.7.77 → 1.7.78
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 +17 -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.78",
|
|
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
|
@@ -108,6 +108,23 @@ p {
|
|
|
108
108
|
|
|
109
109
|
p:last-child { margin-bottom: 0; }
|
|
110
110
|
|
|
111
|
+
/* ─── Inline emphasis (zMD / zText markdown) ───────────────────────────────── */
|
|
112
|
+
/* Bifrost owns the inline tags the markdown parser emits (**bold**, *italic*,
|
|
113
|
+
* __underline__, ~~strike~~, ==highlight==) so rich text renders deliberately
|
|
114
|
+
* and themed — never on raw browser UA defaults. Apps re-skin via _zClass. */
|
|
115
|
+
|
|
116
|
+
strong, b { font-weight: 700; }
|
|
117
|
+
em, i { font-style: italic; }
|
|
118
|
+
u { text-decoration: underline; }
|
|
119
|
+
del, s { text-decoration: line-through; opacity: 0.7; }
|
|
120
|
+
|
|
121
|
+
mark {
|
|
122
|
+
background: color-mix(in srgb, var(--color-warning, #FFB347) 30%, transparent);
|
|
123
|
+
color: inherit;
|
|
124
|
+
padding: 0.05em 0.25em;
|
|
125
|
+
border-radius: 4px;
|
|
126
|
+
}
|
|
127
|
+
|
|
111
128
|
/* ─── zTheme semantic text colors — zCLI parity ───────────────────────────── */
|
|
112
129
|
/* The client maps a header/text `color:` token → `.zText-<token>`. These are
|
|
113
130
|
* the zOS defaults so `color: PRIMARY` paints in Bifrost without any _zClass,
|