fix: replace CSS Modules composes directives with plain CSS #3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix-css-composes-bug"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Replaces all
composes:directives (CSS Modules feature) with actual base styles for browser compatibility.Problem: The v6.0 CSS files used
composes:which is a CSS Modules feature — it does NOT work in plain CSS files. This caused:glass-elevated,glass-nav,glass-sidebar) not inheriting base stylesFix: Replaced all 10
composes:instances with the actual inherited styles:.glass-elevated→ inlinedglass-heavystyles.glass-nav→ inlinedglass-lightstyles.glass-sidebar→ inlinedglass-lightstyles.vertex-stat-card→ inlinedvertex-cardstyles (+ hover).vertex-feature-card→ inlinedvertex-cardstyles (+ hover).vertex-plugin-card→ inlinedvertex-cardstyles (+ hover).vertex-server-card→ inlinedvertex-cardstyles (+ hover).vertex-select→ inlinedvertex-inputstyles (+ focus).vertex-textarea→ inlinedvertex-inputstyles (+ focus)