I would like to use Modernizr classes but I can't see how to do it properly with SASS in a current nesting selectors.
How to optimize:
.page-home
.content
.rows
.row
background: blue
.images
width: auto
html.no-touch
.page-home
.content
.rows
.row
&:hover
background: red
html.touch
.page-home
.content
.images
max-width: 50px
To render something like :
.page-home .content .rows .row {
background: blue;
}
html.no-touch .page-home .content .rows .row:hover {
background: blue;
}
.page-home .content .images {
width: auto;
}
html.touch .page-home .content .images {
max-width: 50px;
}
Will render:
See SASS referencing parent selectors and this post for another example.