symbiote-ui 0.3.0-alpha.49 → 0.3.0-alpha.50
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/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to `symbiote-ui` will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## [0.3.0-alpha.50] - 2026-06-27
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Kept markdown table row hover backgrounds on the active theme background
|
|
12
|
+
instead of using the dark overlay/backdrop token.
|
|
13
|
+
|
|
7
14
|
## [0.3.0-alpha.49] - 2026-06-27
|
|
8
15
|
|
|
9
16
|
### Fixed
|
|
@@ -164,7 +164,7 @@ export default `
|
|
|
164
164
|
font-weight: 600;
|
|
165
165
|
}
|
|
166
166
|
code-block .md-table tr:hover td {
|
|
167
|
-
background: var(--sn-bg-
|
|
167
|
+
background: var(--sn-code-table-row-hover-bg, var(--sn-bg));
|
|
168
168
|
}
|
|
169
169
|
/* Token colors */
|
|
170
170
|
code-block .t-kw { color: var(--sn-syntax-keyword); }
|
package/package.json
CHANGED