Created
March 8, 2014 22:17
-
-
Save MichaelArestad/9439796 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.0) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$admin-menu-b:( | |
menu: ( | |
content:\f333, | |
top: 3px | |
), | |
admin-site:( | |
content:\f319, | |
), | |
dashboard:( | |
content:\f226, | |
top: 3px | |
), | |
); | |
/* Admin Menu Icons */ | |
@each $dashicons, $icon in $admin-menu-b { | |
.dashicons-#{$dashicons}:before { | |
content: '#{map-get(map-get($admin-menu-b, $dashicons), content)}'; | |
top: map-get(map-get($admin-menu-b, $dashicons), top); | |
} | |
} |
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
/* Admin Menu Icons */ | |
.dashicons-menu:before { | |
content: "\f333"; | |
top: 3px; | |
} | |
.dashicons-admin-site:before { | |
content: "\f319"; | |
} | |
.dashicons-dashboard:before { | |
content: "\f226"; | |
top: 3px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment