Created
November 28, 2013 18:04
-
-
Save jleiva/7696027 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="bio active"> | |
<p class="tab-icon">Test</p> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
/* rewrite */ | |
.bio { | |
&.active { | |
z-index: 2; | |
.tab-icon { | |
background: red; | |
} | |
} | |
.tab-icon { | |
background: pink; | |
padding-left: 0; position: absolute; right: -44px; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* rewrite */ | |
.bio.active { | |
z-index: 2; | |
} | |
.bio.active .tab-icon { | |
background: red; | |
} | |
.bio .tab-icon { | |
background: pink; | |
padding-left: 0; | |
position: absolute; | |
right: -44px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="bio active"> | |
<p class="tab-icon">Test</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment