After updating to Bricks 2.4.1, links in Gutenberg look like normal text (no color/underline). Before 2.4 they were fine.
Verified on two separate installations — same issue after the 2.4.1 update.
DevTools shows Bricks overriding default link styles in the editor iframe:
.block-editor-iframe__body :where(a) {
color: currentColor;
text-decoration: none;
}
Tried: components disabled, CSS regenerate, “Disable Bricks theme styles in the block editor” → no change (rule comes from Bricks default/frontend styles, not Theme Styles link selectors).
Related but different: Theme Styles injection threads (#40388, #40395). This is specifically the core :where(a) reset making content links unreadable in the editor.
Expected: visible link formatting in Gutenberg, as before 2.4.1.