You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a MxButton containing an MxBoxLayout with 2 MxIcon inside. I use mx_stylable_set_style_class() to set the name "foo" on the button and "bar" on one of the icons.
In the CSS if I write ".foo:active .bar {}" it is not applied. But if I write ".foo:active > MxBoxLayout > .bar {}" then it works.
That looks like a bug to me, right?
The text was updated successfully, but these errors were encountered:
Oh and if I set the name "baz" on the 2nd icon, ".foo:active .baz" does not match and ".foo:active > MxBoxLayout > .baz" does not match neither! but ".foo .baz" and ".foo > MxBoxLayout > .baz" both works.
And I can reproduce this on both 1.4 and master branches.
I have a MxButton containing an MxBoxLayout with 2 MxIcon inside. I use mx_stylable_set_style_class() to set the name "foo" on the button and "bar" on one of the icons.
In the CSS if I write ".foo:active .bar {}" it is not applied. But if I write ".foo:active > MxBoxLayout > .bar {}" then it works.
That looks like a bug to me, right?
The text was updated successfully, but these errors were encountered: