Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created October 15, 2015 11:05
Show Gist options
  • Save cimmanon/aba4db72ac9b54ec83ad to your computer and use it in GitHub Desktop.
Save cimmanon/aba4db72ac9b54ec83ad to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin button-variant($color, $background-color, $enabled: true) {
color: $color;
background-color: $background-color;
@if $enabled {
cursor: wait;
&:hover {
background-color: darken($background-color, 5%);
}
}
& .icon {
color: $color;
margin-right: 0.5em;
}
}
.foo {
@include button-variant(red, blue, false);
}
/* */
.bar {
@include button-variant(red, blue);
}
.foo {
color: red;
background-color: blue;
}
.foo .icon {
color: red;
margin-right: 0.5em;
}
/* */
.bar {
color: red;
background-color: blue;
cursor: wait;
}
.bar:hover {
background-color: #0000e6;
}
.bar .icon {
color: red;
margin-right: 0.5em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment