Skip to content

Commit

Permalink
Fixes box-sizing rules, release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ozdemirburak committed May 6, 2016
1 parent cb18d71 commit e5a2902
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-floating-social-share",
"version": "1.2.2",
"version": "1.3.0",
"homepage": "http://github.com/ozdemirburak/jquery-floating-social-share",
"authors": [
"Burak Ozdemir <https://github.com/ozdemirburak>"
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.floating-social-share.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-floating-social-share",
"version": "1.2.2",
"version": "1.3.0",
"description": "social media share buttons with counters",
"main": [
"dist/jquery-floating-social-share.min.js",
Expand Down
10 changes: 9 additions & 1 deletion src/jquery.floating-social-share.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery Floating Social Share Plugin v1.2.2
* jQuery Floating Social Share Plugin v1.3.0
* http://burakozdemir.co.uk
* Burak Ozdemir - <https://github.com/ozdemirburak>
* Released under the MIT license
Expand All @@ -9,6 +9,14 @@
position: relative;
}

#floatingSocialShare *,
#floatingSocialShare *:before,
#floatingSocialShare *:after {
-webkit-box-sizing: content-box !important;
-moz-box-sizing: content-box !important;
box-sizing: content-box !important;
}

#floatingSocialShare a {
position: relative;
width: 45px;
Expand Down
2 changes: 1 addition & 1 deletion src/jquery.floating-social-share.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery Floating Social Share Plugin v1.2.2
* jQuery Floating Social Share Plugin v1.3.0
* http://burakozdemir.co.uk
* Burak Ozdemir - <https://github.com/ozdemirburak>
* Released under the MIT license
Expand Down

0 comments on commit e5a2902

Please sign in to comment.