Currently I'm working with Vue.js components.
The problem is that I have such a style block
<style scoped>
.some-class >>> .multiselect__tags {
/*...*/
}
</style>
and PhpStorm 2017.3.6 is constantly converting it into
<style scoped>
.some-class > > > .multiselect__tags {
/*...*/
}
</style>
what is, obviously, an error, cause >>> is a Vue.js-specific combinator. More about it here.
Did I miss a solution except for the /deep/ combinator?