Skip to content

Instantly share code, notes, and snippets.

@alice-liu
Last active August 29, 2015 14:07
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
.a {
color: red;
&:disabled {
color: blue;
&,
&:hover,
&:active {
background-color: red;
}
}
}
.a {
color: red;
}
.a:disabled {
color: blue;
}
.a:disabled, .a:disabled:hover, .a:disabled:active {
background-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment