restore Cyberdigma widget house-style override
Restores is:inline on the Cyberdigma/MeetingSelect override <style> block in BookingForm.astro, so the Wonders of Work house-style colors apply to the booking widget again instead of the vendor default styling.
1. Open a space page with the booking form and run a search that opens the Cyberdigma booking overlay. 2. Confirm the widget shows the Wonders of Work house-style colors (primary brand color), not the default Cyberdigma blue. 3. Compare against current production / the broken build to see the regression.
What this affects- Only
src/components/BookingForm.astro— the inline override style block. - Root cause: merge 84d8404 (
w3c-enhancements) flipped<style is:inline>to plain<style>. Astro scopes plain style blocks with adata-astro-cidattribute on selectors + rendered elements. The Cyberdigma widget DOM (.searchWidget,.c_lab-bw-widget, …) is injected at runtime by the third-party web component and never gets the scope attribute, so the scoped overrides stopped matching.is:inlinekeeps the CSS global/unscoped so it matches the runtime-injected widget again. - No JS or markup behavior change; styling only.
Updates · newest first
- preview ↗ fix(booking): restore is:inline on Cyberdigma style override