@luckydraw/cumulus 0.27.28 → 0.27.29

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.
@@ -44,10 +44,12 @@
44
44
 
45
45
  // ─── Styles ─────────────────────────────────────────────────────────────────
46
46
  var STYLES = [
47
+ /* box-sizing applies everywhere including blex — desired for consistent layout */
47
48
  '.cumulus-widget * { box-sizing: border-box; }',
48
- '.cumulus-widget *:not(.blex-block-container *) { margin: 0; padding: 0; }',
49
- '.blex-block-container * { margin: revert; padding: revert; line-height: revert; list-style: revert; border-spacing: revert; }',
50
- '.blex-block-container { isolation: isolate; }',
49
+ /* Zero-specificity reset: any class selector (widget or blex) overrides this naturally */
50
+ ':where(.cumulus-widget) :where(*) { margin: 0; padding: 0; }',
51
+ /* Blex blocks inherit text theme from widget */
52
+ '.blex-block-container { color: #e0e0e0; font-family: inherit; font-size: inherit; line-height: 1.5; isolation: isolate; }',
51
53
 
52
54
  '.cumulus-widget {',
53
55
  ' font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luckydraw/cumulus",
3
- "version": "0.27.28",
3
+ "version": "0.27.29",
4
4
  "description": "RLM-based CLI chat wrapper for Claude with external history context management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",