mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
0af46bc123
This commit fixes the css selector generation for nested rules
Before this fix, a selector like:
.parent {
.child-a, .child-b {
color: red;
}
}
was generated as:
.parent .child-a, .child-b {
color: red;
}
Now it generates:
.parent .child-a, .parent .child-b {
color: red;
}