Description
I tried to use container queries (@container) within the custom Gutenberg editor CSS.
A simple css file with the following content only:
@container (min-width: 300px) {
.container-item {
width: 100%;
}
}
added with add_editor_style('PATH_TO_CSS');, leads to the following error:
block-editor.min.js?ver=0c7c9b9a74ceb717d6eb:formatted:13916 Error while traversing the CSS: Error: undefined:3:3: missing '}'
tp @ block-editor.min.js?ver=0c7c9b9a74ceb717d6eb:formatted:13916
(anonymous) @ block-editor.min.js?ver=0c7c9b9a74ceb717d6eb:formatted:13987
c @ lodash.min.js?ver=4.17.19:9
Ou @ lodash.min.js?ver=4.17.19:9
ap @ block-editor.min.js?ver=0c7c9b9a74ceb717d6eb:formatted:13982
(anonymous) @ block-editor.min.js?ver=0c7c9b9a74ceb717d6eb:formatted:14019
useMemo @ react-dom.min.js?ver=17.0.1:9
e.useMemo @ react.min.js?ver=17.0.1:9
up @ block-editor.min.js?ver=0c7c9b9a74ceb717d6eb:formatted:14019
ct @ react-dom.min.js?ver=17.0.1:9
os @ react-dom.min.js?ver=17.0.1:9
Ur @ react-dom.min.js?ver=17.0.1:9
Ir @ react-dom.min.js?ver=17.0.1:9
Dr @ react-dom.min.js?ver=17.0.1:9
Pr @ react-dom.min.js?ver=17.0.1:9
(anonymous) @ react-dom.min.js?ver=17.0.1:9
unstable_runWithPriority @ react.min.js?ver=17.0.1:9
xn @ react-dom.min.js?ver=17.0.1:9
Nn @ react-dom.min.js?ver=17.0.1:9
_n @ react-dom.min.js?ver=17.0.1:9
Er @ react-dom.min.js?ver=17.0.1:9
Rt @ react-dom.min.js?ver=17.0.1:9
e @ data.min.js?ver=d8cf5b24f99c64ae47d6:9
t @ data.min.js?ver=d8cf5b24f99c64ae47d6:9
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
p @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ redux-routine.min.js?ver=c9ea6c0df793258797e6:9
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ core-data.min.js?ver=d8d458b31912f858bcdf:2
await in (anonymous) (async)
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ redux-routine.min.js?ver=c9ea6c0df793258797e6:9
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
ie @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
setTimeout (async)
a @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
i @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ edit-post.min.js?ver=2baffbeec6cbe5171dee:7
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:9
l @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:2
(anonymous) @ data.min.js?ver=d8cf5b24f99c64ae47d6:9
Ke @ data.min.js?ver=d8cf5b24f99c64ae47d6:9
vo @ edit-post.min.js?ver=2baffbeec6cbe5171dee:7
ct @ react-dom.min.js?ver=17.0.1:9
os @ react-dom.min.js?ver=17.0.1:9
Ur @ react-dom.min.js?ver=17.0.1:9
Ir @ react-dom.min.js?ver=17.0.1:9
Dr @ react-dom.min.js?ver=17.0.1:9
Pr @ react-dom.min.js?ver=17.0.1:9
Er @ react-dom.min.js?ver=17.0.1:9
ul @ react-dom.min.js?ver=17.0.1:9
(anonymous) @ react-dom.min.js?ver=17.0.1:9
Lr @ react-dom.min.js?ver=17.0.1:9
ml @ react-dom.min.js?ver=17.0.1:9
e.render @ react-dom.min.js?ver=17.0.1:9
Po @ edit-post.min.js?ver=2baffbeec6cbe5171dee:7
(anonymous) @ post.php?post=22&action=edit:343
Step-by-step reproduction instructions
- Create a css file with container queries
- Add it in the
functions.php via add_editor_style('PATH_TO_CSS');
- Edit a page/blog item in the backend via Gutenberg editor
- All CSS in the added editor css file is ignored
- Error (see above) is display in browser console
Screenshots, screen recording, code snippet
No response
Environment info
- Wordpress Version 6.1.1
- Gutenberg Version that comes with 6.1.1, I don't see where I can check this...
- Chrome 107.0.5304.110
- MacOS Ventura 13.0.1 on MacBook Pro
Please confirm that you have searched existing issues in the repo.
Yes
Please confirm that you have tested with all plugins deactivated except Gutenberg.
Yes
Description
I tried to use container queries (
@container) within the custom Gutenberg editor CSS.A simple css file with the following content only:
added with
add_editor_style('PATH_TO_CSS');, leads to the following error:Step-by-step reproduction instructions
functions.phpviaadd_editor_style('PATH_TO_CSS');Screenshots, screen recording, code snippet
No response
Environment info
Please confirm that you have searched existing issues in the repo.
Yes
Please confirm that you have tested with all plugins deactivated except Gutenberg.
Yes