Skip to content

Commit

Permalink
Allow setting $experimental-support-for-pie
Browse files Browse the repository at this point in the history
PIE support couldn't be disabled because this variable was always being overriden by _pie.scss.

This fix doesn't change the default setting (and therefore doesn't break compatibility) but allows us to opt out of PIE support.

Closes: Igosuki#52
  • Loading branch information
dooart committed Mar 4, 2016
1 parent 8d93bef commit bd4f027
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/compass/_support.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ $experimental-support-for-khtml : false !default;
// generated stylesheets.
$experimental-support-for-svg : false !default;
// Support for CSS PIE in experimental css3 properties (-pie).
$experimental-support-for-pie : false !default;
$experimental-support-for-pie : true !default;
2 changes: 1 addition & 1 deletion lib/compass/css3/_pie.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$experimental-support-for-pie: true;
$experimental-support-for-pie: true !default;

// It is recommended that you use Sass's @extend directive to apply the behavior
// to your PIE elements. To assist you, Compass provides this variable.
Expand Down

0 comments on commit bd4f027

Please sign in to comment.