Skip to content

Instantly share code, notes, and snippets.

@Undistraction
Created July 30, 2015 10:45
Show Gist options
  • Save Undistraction/2d0fee3b13704c7d93e8 to your computer and use it in GitHub Desktop.
Save Undistraction/2d0fee3b13704c7d93e8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<img srcset="/assets/paperclip/full/video.png 610w,/assets/paperclip/full/video.png 300w">
// ----
// libsass (v3.2.5)
// ----
@mixin when-inside($context-list...) {
$selectors: '';
@each $context in $context-list {
// Unquote the context to address LibSass bug
$selectors: "#{$selectors} #{unquote($context)} &,"
}
#{$selectors}{
@content
}
}
.Test2 {
//.public.pages-controller.about-page
@include when-inside(
'.public.pages-controller.home-page') {
color: red;
}
}
.public.pages-controller.home-page .Test2 {
color: red;
}
<img srcset="/assets/paperclip/full/video.png 610w,/assets/paperclip/full/video.png 300w">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment