Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

Commit

Permalink
0.1.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleat committed Aug 26, 2014
1 parent fc652fa commit 1dbd11a
Show file tree
Hide file tree
Showing 10 changed files with 84 additions and 15 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ To test the PHP code, navigate to the `service` directory and run `phpunit socia
* `v0.1.4` Fix for twitter widget share of non-current page URL. Added data-share-text.
* `v0.1.5` Option for activate on click, instead of hover. i18n Code, adds de_DE support. Fix for Google+ issue with disappearing tooltip. Local url filtering on counts service. More accurate Facebook counts.
* `v0.1.6` Added Pinterest button. Thanks @dustMason! Fix for IE10 support (wasn’t passing A-Grade test). Facebook button requires long form locale. Tweaks to German button sizes.
* `v0.1.7` Bug fix: #42

## Advanced Options

Expand Down
72 changes: 69 additions & 3 deletions dist/socialcount-with-icons.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! SocialCount - v0.1.6 - 2013-08-08
/*! SocialCount - v0.1.7 - 2014-08-26
* https://github.com/filamentgroup/SocialCount
* Copyright (c) 2013 zachleat; Licensed MIT */
* Copyright (c) 2014 zachleat; Licensed MIT */

.socialcount {
color: #fff;
Expand Down Expand Up @@ -223,4 +223,70 @@
0% { opacity: 0; }
50% { opacity: 0.8; }
100% { opacity: 0; }
}
}
.social-icon {
display: inline-block;
*display: inline;
zoom: 1;
vertical-align: middle;
*margin-right: 5px;
}

.socialcount.grade-a.activate-on-hover > li.hover .social-icon,
.socialcount.grade-a.activate-on-click > li.hover.active .social-icon {
display: none;
}

.socialcount-small.grade-a.activate-on-hover > li.hover .social-icon,
.socialcount-small.grade-a.activate-on-click > li.hover.active .social-icon,
.socialcount-large.grade-a.activate-on-hover > li.hover .social-icon,
.socialcount-large.grade-a.activate-on-click > li.hover.active .social-icon {
display: inline-block;
*display: inline;
zoom: 1;
}

.icon-sprite, .icon-facebook, .icon-googleplus, .icon-pinterest, .icon-share, .icon-twitter {
background: url('icon-sd6cd4d0ec7.png') no-repeat;
}

.icon-facebook {
background-position: 0 0;
height: 15px;
width: 17px;
}

.icon-googleplus {
background-position: -21px 0;
height: 17px;
width: 20px;
}

.icon-pinterest {
background-position: -45px 0;
height: 15px;
width: 11px;
}

.icon-share {
background-position: -60px 0;
height: 16px;
width: 20px;
}

.icon-twitter {
background-position: -84px 0;
height: 15px;
width: 17px;
}

/* HD icons */
@media (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
.social-icon {
-webkit-background-size: auto 17px;
-moz-background-size: auto 17px;
-o-background-size: auto 17px;
background-size: auto 17px;
background-image: url('icon-hd-s816aa7a6b3.png');
}
}
6 changes: 3 additions & 3 deletions dist/socialcount-with-icons.min.css

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

4 changes: 2 additions & 2 deletions dist/socialcount.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! SocialCount - v0.1.6 - 2013-08-08
/*! SocialCount - v0.1.7 - 2014-08-26
* https://github.com/filamentgroup/SocialCount
* Copyright (c) 2013 zachleat; Licensed MIT */
* Copyright (c) 2014 zachleat; Licensed MIT */

.socialcount {
color: #fff;
Expand Down
4 changes: 2 additions & 2 deletions dist/socialcount.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! SocialCount - v0.1.6 - 2013-08-08
/*! SocialCount - v0.1.7 - 2014-08-26
* https://github.com/filamentgroup/SocialCount
* Copyright (c) 2013 zachleat; Licensed MIT */
* Copyright (c) 2014 zachleat; Licensed MIT */

;(function( win, doc, $ ) {

Expand Down
4 changes: 2 additions & 2 deletions dist/socialcount.min.css

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

Loading

0 comments on commit 1dbd11a

Please sign in to comment.