Skip to content

Commit

Permalink
v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drublic committed Oct 20, 2014
1 parent cdc4f97 commit 82fc9d2
Show file tree
Hide file tree
Showing 5 changed files with 125 additions and 172 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

### HEAD

### 0.11.0 - 20.10.2014
* Use grunt-sass with libsass
* Fix for x-opacity to not throw an exception

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-mixins",
"version": "0.10.0",
"version": "0.11.0",
"main": "mixins.scss",
"author": "Hans Christian Reinl",
"ignore": [
Expand Down
8 changes: 5 additions & 3 deletions mixins.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! sass-mixins - v0.9.0 - 2014-07-02 *//**
/*! sass-mixins - v0.11.0 - 2014-10-20 *//**
* @description
* Generates keyframe animations
*
Expand Down Expand Up @@ -161,7 +161,7 @@
*/
@mixin x-box-sizing ($type: border-box) {
-webkit-box-sizing: $type; // Safari <= 5.0, Chrome <= 9.0, iOS Safari 3.2 - 4.3 and Android 2.1 - 3.0
-moz-box-sizing: $type; // FF 2.0+
-moz-box-sizing: $type; // FF 2.0 - 28.0
box-sizing: $type; // IE 8, Opera 9.5+
}

Expand Down Expand Up @@ -769,8 +769,10 @@
* }
*/
@mixin x-opacity ($value: 1) {
$value-percentage : $value * 100;

opacity: $value;
filter: alpha(opacity=$value * 100);
filter: alpha(opacity=$value-percentage);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sass-mixins",
"title": "Sass-Mixins",
"description": "Some Sass-Mixins to use in your project",
"version": "0.10.0",
"version": "0.11.0",
"homepage": "https://github.com/drublic/Sass-Mixins",
"author": {
"name": "Hans Christian Reinl",
Expand Down
Loading

0 comments on commit 82fc9d2

Please sign in to comment.