Skip to content

Commit

Permalink
Fix nested selectors in Sass + Less
Browse files Browse the repository at this point in the history
  • Loading branch information
simurai committed Apr 1, 2016
1 parent 3487fef commit d7f1fb8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion styles/languages/css.less
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
}
&.attribute-name {
&.id,
&.class {
&.class,
&.parent-selector {
.uno-1();
}
}
Expand Down
4 changes: 4 additions & 0 deletions styles/languages/sass.less
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,8 @@
&.variable.parameter.url {
.duo-1();
}
&.class,
&.parent-selector-suffix {
.uno-1();
}
}
4 changes: 4 additions & 0 deletions styles/languages/scss.less
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,8 @@
&.variable.parameter.url {
.duo-1();
}
&.class,
&.parent-selector-suffix {
.uno-1();
}
}

0 comments on commit d7f1fb8

Please sign in to comment.