Open fjf2002 opened 5 days ago
Prevent the embedded online-IDE from leaking out CSS selectors.
Work in progress. @martin-pabst: Please take a look and consider.
Mechanics: Do CSS rewriting, in 2 alternative variants
Variant 1, currently activated, see https://github.com/martin-pabst/Online-IDE-new-compiler/blob/0d91f3b98f6826dc5efa59c51bda275501f77dbc/vite.config.js#L81-L95 This nests the whole CSS in a .joe_javaOnlineDiv selector. What then probably fails are :root, html, body selectors (this doesn't seem to matter).
.joe_javaOnlineDiv
:root
html
body
Variant 2: Use a proper plugin. This obviously adds a dependency and perhaps a bit more processing effort. https://github.com/martin-pabst/Online-IDE-new-compiler/blob/0d91f3b98f6826dc5efa59c51bda275501f77dbc/vite.config.js#L72-L80
In either variant, somehow CSS variables get set in the :root namespace (with ThemeSelector even in the html selector).
ThemeSelector
Prevent the embedded online-IDE from leaking out CSS selectors.
Work in progress. @martin-pabst: Please take a look and consider.
Mechanics: Do CSS rewriting, in 2 alternative variants
Variant 1, currently activated, see https://github.com/martin-pabst/Online-IDE-new-compiler/blob/0d91f3b98f6826dc5efa59c51bda275501f77dbc/vite.config.js#L81-L95 This nests the whole CSS in a
.joe_javaOnlineDiv
selector. What then probably fails are:root
,html
,body
selectors (this doesn't seem to matter).Variant 2: Use a proper plugin. This obviously adds a dependency and perhaps a bit more processing effort. https://github.com/martin-pabst/Online-IDE-new-compiler/blob/0d91f3b98f6826dc5efa59c51bda275501f77dbc/vite.config.js#L72-L80
In either variant, somehow CSS variables get set in the
:root
namespace (withThemeSelector
even in thehtml
selector).