mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
74bd119bf5
This commit adds the support of the & selector.
This selector is useful to join a subrule with a parent selector.
example:
button {
&:hover {
background-color: red;
}
}
will give
button:hover {
background-color: red;
}