Skip to content

Commit

Permalink
Add css3 filter support
Browse files Browse the repository at this point in the history
Currently, MDN says only the -webkit prefix is supported, so that's all
that's included.
  • Loading branch information
Jacob Evan Shreve committed Mar 7, 2014
1 parent d15aa0c commit 5b1c6fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/assets/stylesheets/_bourbon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
@import "css3/box-sizing";
@import "css3/calc";
@import "css3/columns";
@import "css3/filter";
@import "css3/flex-box";
@import "css3/font-face";
@import "css3/hyphens";
Expand Down
5 changes: 5 additions & 0 deletions app/assets/stylesheets/css3/_filter.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@mixin filter($function: none) {
// <filter-function> [<filter-function]* | none
@include prefixer(filter, $function, webkit spec);
}

0 comments on commit 5b1c6fb

Please sign in to comment.