Skip to content

Instantly share code, notes, and snippets.

@MichaelArestad
Created March 8, 2014 22:17
Show Gist options
  • Save MichaelArestad/9439796 to your computer and use it in GitHub Desktop.
Save MichaelArestad/9439796 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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);
}
}
/* 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