Last active
January 27, 2018 16:09
-
-
Save mistergraphx/f0d20a5408907d908dcba4c29418d0d2 to your computer and use it in GitHub Desktop.
Nested selectors test : selector_nest()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> 1% | |
last 2 versions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.5.0.beta.2) | |
// ---- | |
// Nested selectors test | |
$modifiers: '.footer','.header', '.main-heading' ; | |
$modified: '.logo','.title','.sub-title'; | |
$selectors: (); | |
@each $modifier in $modifiers { | |
$selectors: append($selectors, selector_nest($modifier, $modified), 'comma') ; | |
} | |
#{$selectors} { | |
value: length($modifiers); | |
color: red; | |
} | |
.footer,.header { | |
.title, .logo { | |
color: blue; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.footer .logo, .footer .title, .footer .sub-title, .header .logo, .header .title, .header .sub-title, .main-heading .logo, .main-heading .title, .main-heading .sub-title { | |
value: 3; | |
color: red; | |
} | |
.footer .title, .footer .logo, .header .title, .header .logo { | |
color: blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment