Skip to content

Commit

Permalink
removing extra mixins from scss to make a straight port
Browse files Browse the repository at this point in the history
  • Loading branch information
davegandy committed Jun 12, 2013
1 parent ba907e7 commit d737b2a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 32 deletions.
1 change: 0 additions & 1 deletion scss/_icons.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
* readers do not read off random characters that represent icons */


.icon-glass:before { content: $glass; }
.icon-music:before { content: $music; }
.icon-search:before { content: $search; }
Expand Down
16 changes: 1 addition & 15 deletions scss/_mixins.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Mixins
// --------------------------

@mixin icon($icon) {
@include icon-FontAwesome();
Expand Down Expand Up @@ -45,18 +46,3 @@
}
}
}

@mixin animation($animation) {
-moz-animation: $animation;
-o-animation: $animation;
-webkit-animation: $animation;
animation: $animation;
}

@mixin transform($transform) {
-webkit-transform: $transform;
-moz-transform: $transform;
-ms-transform: $transform;
-o-transform: $transform;
transform: $transform;
}
1 change: 0 additions & 1 deletion src/assets/font-awesome/scss/_icons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
---
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
* readers do not read off random characters that represent icons */

{% for icon in icons %}{% for alias in icon.aliases %}
.icon-{{ alias }}:before,{% endfor %}
.icon-{{ icon.id }}:before { content: ${{ icon.id }}; }{% endfor %}
16 changes: 1 addition & 15 deletions src/assets/font-awesome/scss/_mixins.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Mixins
// --------------------------

@mixin icon($icon) {
@include icon-FontAwesome();
Expand Down Expand Up @@ -45,18 +46,3 @@
}
}
}

@mixin animation($animation) {
-moz-animation: $animation;
-o-animation: $animation;
-webkit-animation: $animation;
animation: $animation;
}

@mixin transform($transform) {
-webkit-transform: $transform;
-moz-transform: $transform;
-ms-transform: $transform;
-o-transform: $transform;
transform: $transform;
}

0 comments on commit d737b2a

Please sign in to comment.