Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(theme): restore use of unqoute in mixins
Browse files Browse the repository at this point in the history
Removal of `unquote($color)` broke runtime them style generations.
  • Loading branch information
ThomasBurleson committed Mar 11, 2016
1 parent 4112f51 commit d2b02c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/list/demoBasicUsage/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div flex-gt-sm="50" flex>

<md-toolbar layout="row" class="md-hue-2">
<md-toolbar layout="row" class="md-hue-3">
<div class="md-toolbar-tools">
<span>Normal</span>
</div>
Expand Down Expand Up @@ -74,7 +74,7 @@ <h3> {{ phone.number }} </h3>

<div flex-gt-sm="50" flex>

<md-toolbar layout="row" class="md-hue-2">
<md-toolbar layout="row" class="md-hue-3">
<div class="md-toolbar-tools">
<span>Dense</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/core/style/mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
// won't be set on the most browsers.
@each $pseudo in $pseudos {
&#{$pseudo} {
color: $color;
color: unquote($color);
}
}
}
Expand Down

0 comments on commit d2b02c8

Please sign in to comment.