Created
January 13, 2016 12:16
-
-
Save jamiemagique/ed05d9cb4f0c0690fc20 to your computer and use it in GitHub Desktop.
Sass multiline selectors from list
This file contains 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
.swiper-wrapper, | |
.gallery-item-list, | |
.gallery-thumb-list { | |
background: #000; | |
} |
This file contains 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
// scss | |
$swiper-wrappers: ('swiper-wrapper', 'gallery-item-list', 'gallery-thumb-list'); | |
$swiper-wrapper-classes: (); | |
@each $swiper-wrapper in $swiper-wrappers { | |
$swiper-wrapper-classes: append($swiper-wrapper-classes, unquote('.#{$swiper-wrapper}'), comma); | |
} | |
#{$swiper-wrapper-classes} { | |
background: #000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment