Skip to content

Instantly share code, notes, and snippets.

@Harrisonbro
Created September 24, 2014 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Harrisonbro/bdfc5c5aec1a5a182b68 to your computer and use it in GitHub Desktop.
Save Harrisonbro/bdfc5c5aec1a5a182b68 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
@mixin fancy-underline-support {
.cssgradients.backgroundsize.textshadow {
@content;
}
}
// With mixin
@include fancy-underline-support {
.island--info,
.islet--info {
a,
a:hover,
a:focus {
foo: baz;
}
}
}
// Without mixin
.cssgradients.backgroundsize.textshadow {
.island--info,
.islet--info {
a,
a:hover,
a:focus {
foo: bar;
}
}
}
.cssgradients.backgroundsize.textshadow .island--info a,
.cssgradients.backgroundsize.textshadow .island--info a:hover,
.cssgradients.backgroundsize.textshadow .island--info a:focus,
.cssgradients.backgroundsize.textshadow .islet--info a,
.cssgradients.backgroundsize.textshadow .islet--info a:hover,
.cssgradients.backgroundsize.textshadow .islet--info a:focus {
foo: baz;
}
.cssgradients.backgroundsize.textshadow .island--info a,
.cssgradients.backgroundsize.textshadow .island--info a:hover,
.cssgradients.backgroundsize.textshadow .island--info a:focus,
.cssgradients.backgroundsize.textshadow .islet--info a,
.cssgradients.backgroundsize.textshadow .islet--info a:hover,
.cssgradients.backgroundsize.textshadow .islet--info a:focus {
foo: bar;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment