Firstly, this bug might be the related to this one, but I’m not 100% sure: WIP: Code Editor Full Screen mode is not working as expected
Video demonstration: Skrypt_2025-05-14_12-04-18
Issue
When using the Fullscreen CSS Editor in Bricks, any custom CSS added — even while editing a class selector — ends up being applied to the element’s ID selector instead of the intended class.
Steps to Reproduce
- Create an element (e.g. a div) and give it a custom class, e.g.
.text-class
. - Open the Custom CSS panel for
.text-class
and add some CSS (e.g.color: red;
). - Click the Fullscreen button.
- Add some CSS (e.g.
color: blue;
) and exit Fullscreen mode. - Inspect Custom CSS fields for the class and ID selectors:
–.text-class
will still containcolor: red;
.
– The element’s #id selector containscolor: blue;
.