So I have a HTML structure like this:
<g>
<text></text>
</g>
<g>
<g>
<path></path>
</g>
<g>
<text></text>
</g>
</g>
And I want to change the text elements css after a psudeo :hover from path, can I target this somehow with SCSS? Here is what I have so are:
g{
path{
&:hover {
&& + g{
text{
opacity: 1.0 !important;
filter: alpha(opacity=100) !important;
So I just want to grab the side by g tag from the path tags css, is this possible?