Skip to content

Commit

Permalink
Bugfix #41: Workaround in sass file
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Gasser committed Apr 2, 2015
1 parent 05ce0fb commit 82e094c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions blueprints/ember-cli-materialize/files/app/styles/app.scss
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
@import 'materialize';

/* FIXME: Workaround for https://github.com/Dogfalo/materialize/issues/1079 */
@each $mdi-icon-name, $mdi-icon-value in $mdi-list-icons {
.#{$mdi-prefix}#{$mdi-icon-name}:before {
content: "\""+ $mdi-icon-value +"\"";
}
}
7 changes: 7 additions & 0 deletions tests/dummy/app/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,10 @@ span.badge {
.intro {
font-size: 1.2em;
}

/* FIXME: Workaround for https://github.com/Dogfalo/materialize/issues/1079 */
@each $mdi-icon-name, $mdi-icon-value in $mdi-list-icons {
.#{$mdi-prefix}#{$mdi-icon-name}:before {
content: "\""+ $mdi-icon-value +"\"";
}
}

0 comments on commit 82e094c

Please sign in to comment.