Skip to content

Instantly share code, notes, and snippets.

@matori
Created June 29, 2014 10:03
Show Gist options
  • Save matori/4b5680932f629e8ba504 to your computer and use it in GitHub Desktop.
Save matori/4b5680932f629e8ba504 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.9)
// Compass (v1.0.0.alpha.20)
// ----
$foo: ".foo";
#{$foo} {
color: red;
}
@at-root {
$bar: ".bar";
#{$foo} {
color: black;
}
#{$bar} {
color: white;
}
}
// Undefined variable
//#{$bar} {
// color: blue;
//}
$hoge: ".hoge";
#{$hoge} {
$fuga: ".fuga";
color: green;
#{$fuga} {
color: yellow;
}
@at-root {
$piyo: ".piyo";
#{$piyo} {
color: gray;
#{$hoge},
#{$fuga} {
color: inherit;
}
}
}
}
// Undefined variable
//#{$fuga} {
// color: purple;
//}
// Undefined variable
//#{$piyo} {
// color: transparent;
//}
.foo {
color: red;
}
.foo {
color: black;
}
.bar {
color: white;
}
.hoge {
color: green;
}
.hoge .fuga {
color: yellow;
}
.piyo {
color: gray;
}
.piyo .hoge,
.piyo .fuga {
color: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment