Created
July 25, 2014 01:25
-
-
Save airen/1ae1dd7d61e92112cd7e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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.10) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
.highlight { &-header{ .icon{ display: inline-block; width:16px; position:relative; bottom:9px; *bottom:3px; $icon-data:(file, text),(menu, table),(echart0, chart); @each $type , $url in $icon-data { &-#{$type} { background: url(../images/transParent-#{$url}-icon.png) no-repeat center center; } } } } } |
This file contains hidden or 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
.highlight-header .icon { | |
display: inline-block; | |
width: 16px; | |
position: relative; | |
bottom: 9px; | |
*bottom: 3px; | |
} | |
.highlight-header .icon-file { | |
background: url(../images/transParent-text-icon.png) no-repeat center center; | |
} | |
.highlight-header .icon-menu { | |
background: url(../images/transParent-table-icon.png) no-repeat center center; | |
} | |
.highlight-header .icon-echart0 { | |
background: url(../images/transParent-chart-icon.png) no-repeat center center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment