Version Description
- [Improvement] Improved share counts functionality
- [Improvement] Performance improvement
- [Bugfix] "Auto-adjust according to screen width" option was not working for horizontal sticky interface, in a few cases
Download this release
Release Info
Developer | Heateor |
Plugin | WordPress Social Sharing Plugin – Sassy Social Share |
Version | 3.1.3 |
Comparing to | |
See all releases |
Code changes from version 3.1.2 to 3.1.3
- admin/partials/sassy-social-share-about.php +3 -5
- public/class-sassy-social-share-public.php +54 -2
- public/css/sassy-social-share-public.css +1 -1
- readme.txt +13 -5
- sassy-social-share.php +2 -2
- uninstall.php +2 -0
admin/partials/sassy-social-share-about.php
CHANGED
@@ -14,11 +14,9 @@
|
|
14 |
</div>
|
15 |
</div>
|
16 |
|
17 |
-
<div
|
18 |
-
<
|
19 |
-
<
|
20 |
-
<p><?php _e( 'You can help us continue the development of this free plugin by donating', 'sassy-social-share' ) ?></p>
|
21 |
-
<a href="https://www.heateor.com/donate/?action=Sassy+Social+Share" style="text-decoration:none" target="_blank"><input type="button" style="width:52%;background-color:#D51F1F" class="ss_demo" value="<?php _e( 'Donate Now', 'sassy-social-share' ) ?>" /></a>
|
22 |
</div>
|
23 |
</div>
|
24 |
|
14 |
</div>
|
15 |
</div>
|
16 |
|
17 |
+
<div style="margin-bottom: 21px">
|
18 |
+
<div class="inside" style="padding-top:10px">
|
19 |
+
<a target="_blank" style="text-decoration:none;" href="https://www.heateor.com/donate/?action=Sassy+Social+Share"><input type="button" style="background-color:#D51F1F" class="ss_demo" value="<?php _e( 'Donate', 'sassy-social-share' ) ?>" /></a>
|
|
|
|
|
20 |
</div>
|
21 |
</div>
|
22 |
|
public/class-sassy-social-share-public.php
CHANGED
@@ -984,7 +984,9 @@ class Sassy_Social_Share_Public {
|
|
984 |
}
|
985 |
|
986 |
// share count
|
987 |
-
if (
|
|
|
|
|
988 |
$share_counts = $cached_share_count;
|
989 |
} else {
|
990 |
$share_counts = ' ';
|
@@ -1206,6 +1208,27 @@ class Sassy_Social_Share_Public {
|
|
1206 |
|
1207 |
}
|
1208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1209 |
/**
|
1210 |
* Get http/https protocol at the website
|
1211 |
*
|
@@ -1261,6 +1284,11 @@ class Sassy_Social_Share_Public {
|
|
1261 |
}
|
1262 |
|
1263 |
global $post;
|
|
|
|
|
|
|
|
|
|
|
1264 |
// hook to bypass sharing
|
1265 |
$disable_sharing = apply_filters( 'heateor_sss_disable_sharing', $post, $content );
|
1266 |
// if $disable_sharing value is 1, return content without sharing interface
|
@@ -1637,6 +1665,8 @@ class Sassy_Social_Share_Public {
|
|
1637 |
$response_data[$target_urls_array[0][$i]] = $final_share_count_transient;
|
1638 |
if ( $this->options['share_count_cache_refresh_count'] != '' ) {
|
1639 |
set_transient( 'heateor_sss_share_count_' . $this->get_share_count_transient_id( $target_urls_array[0][$i] ), $final_share_count_transient, $transient_expiration_time );
|
|
|
|
|
1640 |
}
|
1641 |
}
|
1642 |
do_action( 'heateor_sss_share_count_ajax_hook', $response_data );
|
@@ -1648,6 +1678,25 @@ class Sassy_Social_Share_Public {
|
|
1648 |
|
1649 |
}
|
1650 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1651 |
/**
|
1652 |
* Save Facebook share counts in transient
|
1653 |
*
|
@@ -1696,7 +1745,10 @@ class Sassy_Social_Share_Public {
|
|
1696 |
if ( $share_count_transient !== false ) {
|
1697 |
$share_count_transient['facebook'] = $value;
|
1698 |
if ( $this->options['share_count_cache_refresh_count'] != '' ) {
|
|
|
|
|
1699 |
set_transient( 'heateor_sss_share_count_' . $transient_id, $share_count_transient, $transient_expiration_time );
|
|
|
1700 |
}
|
1701 |
}
|
1702 |
}
|
@@ -1856,7 +1908,7 @@ class Sassy_Social_Share_Public {
|
|
1856 |
$more_icon_enabled = isset($this->options['vertical_more']) ? 1 : 0;
|
1857 |
$bottom_sharing_responsive_css = 'div.heateor_sss_bottom_sharing{width:100% !important;}div.heateor_sss_bottom_sharing li{width:'.(100/($num_sharing_icons+$total_share_count_enabled+$more_icon_enabled)).'% !important;}div.heateor_sss_bottom_sharing .heateorSssSharing{width: 100% !important;}div.heateor_sss_bottom_sharing div.heateorSssTotalShareCount{font-size:1em!important;line-height:' . ( $vertical_sharing_icon_height*70/100 ) . 'px!important}div.heateor_sss_bottom_sharing div.heateorSssTotalShareText{font-size:.7em!important;line-height:0px!important}';
|
1858 |
}
|
1859 |
-
echo isset( $this->options['vertical_enable'] ) && isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? 'div.heateor_sss_mobile_footer{display:none;}@media screen and (max-width:' . $this->options['horizontal_screen_width'] . 'px) {'.$bottom_sharing_responsive_css.'div.heateor_sss_mobile_footer{display:block;height:'.($this->options['vertical_sharing_shape'] == 'rectangle' ? $this->options['vertical_sharing_height'] : $this->options['vertical_sharing_size']).'px;}.heateor_sss_bottom_sharing{padding:0!important;' . ( $this->options['bottom_sharing_position'] != '' ? $this->options['bottom_sharing_alignment'] . ':' . $this->options['bottom_sharing_position'] . 'px!important;' . $bottom_sharing_postion_inverse . ':auto!important;' : '' ) . 'display:block!important;width: auto!important;bottom:' . ( isset( $this->options['vertical_total_shares'] ) ? '-10' : '-2' ) . 'px!important;top: auto!important;}.heateor_sss_bottom_sharing .heateor_sss_square_count{line-height: inherit;}.heateor_sss_bottom_sharing .heateorSssSharingArrow{display:none;}.heateor_sss_bottom_sharing .heateorSssTCBackground{margin-right: 1.1em !important}}' : '';
|
1860 |
echo $this->options['custom_css'];
|
1861 |
if ( current_filter() == 'wp_enqueue_scripts' ) {
|
1862 |
?>
|
984 |
}
|
985 |
|
986 |
// share count
|
987 |
+
if ( $saved_share_count = $this->get_saved_share_counts( $this->share_count_transient_id, $post_url ) ) {
|
988 |
+
$share_counts = $saved_share_count;
|
989 |
+
} elseif ( false !== ( $cached_share_count = $this->get_cached_share_count( $this->share_count_transient_id ) ) ) {
|
990 |
$share_counts = $cached_share_count;
|
991 |
} else {
|
992 |
$share_counts = ' ';
|
1208 |
|
1209 |
}
|
1210 |
|
1211 |
+
/**
|
1212 |
+
* Get saved share counts for given post ID
|
1213 |
+
*
|
1214 |
+
* @since 1.3.1
|
1215 |
+
*/
|
1216 |
+
public function get_saved_share_counts( $post_id, $post_url ) {
|
1217 |
+
|
1218 |
+
$share_counts = false;
|
1219 |
+
|
1220 |
+
if ( $post_id == 'custom' ) {
|
1221 |
+
$share_counts = maybe_unserialize( get_option( 'heateor_sss_custom_url_shares' ) );
|
1222 |
+
} elseif ( $post_url == home_url() ) {
|
1223 |
+
$share_counts = maybe_unserialize( get_option( 'heateor_sss_homepage_shares' ) );
|
1224 |
+
} elseif ( $post_id > 0 ) {
|
1225 |
+
$share_counts = get_post_meta( $post_id, '_heateor_sss_shares_meta', true );
|
1226 |
+
}
|
1227 |
+
|
1228 |
+
return $share_counts;
|
1229 |
+
|
1230 |
+
}
|
1231 |
+
|
1232 |
/**
|
1233 |
* Get http/https protocol at the website
|
1234 |
*
|
1284 |
}
|
1285 |
|
1286 |
global $post;
|
1287 |
+
|
1288 |
+
if ( ! $post ) {
|
1289 |
+
return $content;
|
1290 |
+
}
|
1291 |
+
|
1292 |
// hook to bypass sharing
|
1293 |
$disable_sharing = apply_filters( 'heateor_sss_disable_sharing', $post, $content );
|
1294 |
// if $disable_sharing value is 1, return content without sharing interface
|
1665 |
$response_data[$target_urls_array[0][$i]] = $final_share_count_transient;
|
1666 |
if ( $this->options['share_count_cache_refresh_count'] != '' ) {
|
1667 |
set_transient( 'heateor_sss_share_count_' . $this->get_share_count_transient_id( $target_urls_array[0][$i] ), $final_share_count_transient, $transient_expiration_time );
|
1668 |
+
// update share counts saved in the database
|
1669 |
+
$this->update_share_counts( $target_urls_array[0][$i], $final_share_count_transient );
|
1670 |
}
|
1671 |
}
|
1672 |
do_action( 'heateor_sss_share_count_ajax_hook', $response_data );
|
1678 |
|
1679 |
}
|
1680 |
|
1681 |
+
/**
|
1682 |
+
* Save share counts in post-meta
|
1683 |
+
*
|
1684 |
+
* @since 3.1.3
|
1685 |
+
*/
|
1686 |
+
public function update_share_counts( $target_url, $share_counts ) {
|
1687 |
+
|
1688 |
+
$post_id = $this->get_share_count_transient_id( $target_url );
|
1689 |
+
|
1690 |
+
if ( $post_id == 'custom' ) {
|
1691 |
+
update_option( 'heateor_sss_custom_url_shares', maybe_serialize( $share_counts ) );
|
1692 |
+
} elseif ( $target_url == home_url() ) {
|
1693 |
+
update_option( 'heateor_sss_homepage_shares', maybe_serialize( $share_counts ) );
|
1694 |
+
} elseif ( $post_id > 0 ) {
|
1695 |
+
update_post_meta( $post_id, '_heateor_sss_shares_meta', $share_counts );
|
1696 |
+
}
|
1697 |
+
|
1698 |
+
}
|
1699 |
+
|
1700 |
/**
|
1701 |
* Save Facebook share counts in transient
|
1702 |
*
|
1745 |
if ( $share_count_transient !== false ) {
|
1746 |
$share_count_transient['facebook'] = $value;
|
1747 |
if ( $this->options['share_count_cache_refresh_count'] != '' ) {
|
1748 |
+
$saved_share_count = $this->get_saved_share_counts( $transient_id, $key );
|
1749 |
+
$saved_share_count['facebook'] = $value;
|
1750 |
set_transient( 'heateor_sss_share_count_' . $transient_id, $share_count_transient, $transient_expiration_time );
|
1751 |
+
$this->update_share_counts( $key, $saved_share_count );
|
1752 |
}
|
1753 |
}
|
1754 |
}
|
1908 |
$more_icon_enabled = isset($this->options['vertical_more']) ? 1 : 0;
|
1909 |
$bottom_sharing_responsive_css = 'div.heateor_sss_bottom_sharing{width:100% !important;}div.heateor_sss_bottom_sharing li{width:'.(100/($num_sharing_icons+$total_share_count_enabled+$more_icon_enabled)).'% !important;}div.heateor_sss_bottom_sharing .heateorSssSharing{width: 100% !important;}div.heateor_sss_bottom_sharing div.heateorSssTotalShareCount{font-size:1em!important;line-height:' . ( $vertical_sharing_icon_height*70/100 ) . 'px!important}div.heateor_sss_bottom_sharing div.heateorSssTotalShareText{font-size:.7em!important;line-height:0px!important}';
|
1910 |
}
|
1911 |
+
echo isset( $this->options['vertical_enable'] ) && isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? 'div.heateor_sss_mobile_footer{display:none;}@media screen and (max-width:' . $this->options['horizontal_screen_width'] . 'px) {'.$bottom_sharing_responsive_css.'div.heateor_sss_mobile_footer{display:block;height:'.($this->options['vertical_sharing_shape'] == 'rectangle' ? $this->options['vertical_sharing_height'] : $this->options['vertical_sharing_size']).'px;}.heateor_sss_bottom_sharing{padding:0!important;' . ( $this->options['bottom_sharing_position_radio'] == 'nonresponsive' && $this->options['bottom_sharing_position'] != '' ? $this->options['bottom_sharing_alignment'] . ':' . $this->options['bottom_sharing_position'] . 'px!important;' . $bottom_sharing_postion_inverse . ':auto!important;' : '' ) . 'display:block!important;width: auto!important;bottom:' . ( isset( $this->options['vertical_total_shares'] ) ? '-10' : '-2' ) . 'px!important;top: auto!important;}.heateor_sss_bottom_sharing .heateor_sss_square_count{line-height: inherit;}.heateor_sss_bottom_sharing .heateorSssSharingArrow{display:none;}.heateor_sss_bottom_sharing .heateorSssTCBackground{margin-right: 1.1em !important}}' : '';
|
1912 |
echo $this->options['custom_css'];
|
1913 |
if ( current_filter() == 'wp_enqueue_scripts' ) {
|
1914 |
?>
|
public/css/sassy-social-share-public.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@charset "utf-8";#heateor_sss_error{color:red;margin:7px 0}.heateor_sss_login_container{margin:2px 0}.heateor_sss_login_container img,.heateor_sss_sharing_container img{cursor:pointer;margin:2px;border:none}.heateor_sss_login_container img{display:none;float:left}#heateor_sss_loading_image{display:block!important;float:none}.heateor_sss_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#heateor_sss_sharing_more_providers{position:fixed;top:50%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#heateor_sss_popup_bg{background:url(../../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#heateor_sss_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58B8F8!important;border-bottom:1px solid #D7D7D7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#heateor_sss_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#heateor_sss_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#heateor_sss_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#heateor_sss_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#heateor_sss_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#heateor_sss_sharing_more_providers .close-button img{margin:0;}#heateor_sss_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#heateor_sss_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-13px;top:-11px}#heateor_sss_sharing_more_providers .filter input.search{width:94%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 auto;padding:5px 8px 5px 10px;border:1px solid #ccc!important;color:#000;background:#FFF!important;font-size:16px!important;text-align:left!important}#heateor_sss_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#heateor_sss_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#heateor_sss_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#heateor_sss_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:18px;height:auto;line-height:28px;overflow:hidden;padding:8px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none}.heateor_sss_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58B8F8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.heateor_sss_share_count,.heateor_sss_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.heateor_sss_login_ul,ul.heateor_sss_sharing_ul{list-style:none!important;padding-left:0!important}.heateorSssXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.heateorSssFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.heateorSssLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.heateorSssGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.heateorSssInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.heateorSssLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.heateorSssTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.heateorSssVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.heateor_sss_sharing_ul{margin:1px 0!important}#heateor_sss_sharing_popup_close img{opacity: 1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}ul.heateor_sss_sharing_ul li.heateorSssSharingRound{background:0 0!important}.heateor_sss_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden}ul.heateor_sss_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important}.heateorSssSharing,.heateorSssSharingButton{display:block;cursor:pointer;margin:2px}ul.heateor_sss_login_ul li:before,ul.heateor_sss_sharing_ul li:before{content:none!important}.heateor_sss_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_share, div.heateor_sss_horizontal_counter li.heateor_sss_facebook_share{width:120px}li.heateor_sss_facebook_share .fb-share-button span,li.heateor_sss_facebook_like .fb-like span,li.heateor_sss_facebook_recommend .fb-like span{vertical-align:top!important}li.heateor_sss_facebook_like .fb-like span iframe,li.heateor_sss_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000}.heateor_sss_counter_container li{height:21px}.heateorSssInstagramBackground{background-color:#624E47}.heateorSssYummlyBackground{background-color:#E16120}.heateorSssBufferBackground{background-color:#000}.heateorSssDeliciousBackground{background-color:#53BEEE}.heateorSssFacebookBackground{background-color:#3C589A}.heateorSssDiggBackground{background-color:#006094}.heateorSssEmailBackground{background-color:#649A3F}.heateorSssFloatitBackground{background-color:#53BEEE}.heateorSssGoogleBackground{background-color:#dd4b39}.heateorSssGoogleplusBackground{background-color:#dd4b39}.heateorSssLinkedinBackground{background-color:#0077B5}.heateorSssMoreBackground{background-color:#EE8E2D}.heateorSssPinterestBackground{background-color:#CC2329}.heateorSssPrintBackground{background-color:#FD6500}.heateorSssRedditBackground{background-color:#247CED}.heateorSssStockTwitsBackground{background-color: #40576F}.heateorSssStumbleuponBackground{background-color:#EA4823}.heateorSssTumblrBackground{background-color:#29435D}.heateorSssTwitterBackground{background-color:#55acee}.heateorSssVkontakteBackground{background-color:#5E84AC}.heateorSssYahooBackground{background-color:#8F03CC}.heateorSssXingBackground{background-color:#00797D}.heateorSssInstagramBackground{background-color:#527FA4}.heateorSssWhatsappBackground{background-color:#55EB4C}.heateorSssTCBackground,.heateorSssTCBackground:hover{border-width: 0!important;background-color:transparent;}.heateorSssTCBackground{background-color:transparent!important;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.heateorSssSharingSvg{width:100%;height:100%}.heateorSssSharing{float:left;border:none}.heateorSssSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.heateorSssPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.heateorSssPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.heateorSssCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}div.heateorSssTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.heateorSssTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}div.heateor_sss_horizontal_sharing li{width:auto}.heateorSssAIMBackground{background-color: #10ff00}.heateorSssAmazonWishListBackground{background-color: #ffe000}.heateorSssAOLMailBackground{background-color: #2A2A2A}.heateorSssAppnetBackground{background-color: #5D5D5D}.heateorSssBaiduBackground{background-color: #2319DC}.heateorSssBalatarinBackground{background-color: #fff}.heateorSssBibSonomyBackground{background-color: #000}.heateorSssBittyBrowserBackground{background-color: #EFEFEF}.heateorSssBlinklistBackground{background-color: #3D3C3B}.heateorSssBloggerPostBackground{background-color: #FDA352}.heateorSssBlogMarksBackground{background-color: #535353}.heateorSssBookmarksfrBackground{background-color: #E8EAD4}.heateorSssBoxnetBackground{background-color: #1A74B0}.heateorSssBuddyMarksBackground{background-color: #ffd400}.heateorSssCare2NewsBackground{background-color: #6EB43F}.heateorSssCiteULikeBackground{background-color: #2781CD}.heateorSssCommentBackground{background-color: #444}.heateorSssCopyLinkBackground{background-color: #FFC112}.heateorSssDiaryRuBackground{background-color: #E8D8C6}.heateorSssDiasporaBackground{background-color: #2E3436}.heateorSssDiHITTBackground{background-color: #FF6300}.heateorSssDiasporaBackground{background-color: #0166FF}.heateorSssDiigoBackground{background-color: #4A8BCA}.heateorSssDoubanBackground{background-color: #497700}.heateorSssDraugiemBackground{background-color: #ffad66}.heateorSssDZoneBackground{background-color: #fff088}.heateorSssEvernoteBackground{background-color: #8BE056}.heateorSssFacebookMessengerBackground{background-color: #0084FF}.heateorSssFarkBackground{background-color: #555}.heateorSssFlipboardBackground{background-color: #CC0000}.heateorSssFolkdBackground{background-color: #0F70B2}.heateorSssGoogleClassroomBackground{background-color: #FFC112}.heateorSssGoogleBookmarksBackground{background-color: #CB0909}.heateorSssGoogleGmailBackground{background-color: #E5E5E5}.heateorSssHackerNewsBackground{background-color: #F60}.heateorSssHatenaBackground{background-color: #00A6DB}.heateorSssInstapaperBackground{background-color: #EDEDED}.heateorSssJamespotBackground{background-color: #FF9E2C}.heateorSssKakaoBackground{background-color: #FCB700}.heateorSssKikBackground{background-color: #2A2A2A}.heateorSssKindleItBackground{background-color: #2A2A2A}.heateorSssKnownBackground{background-color: #fff101}.heateorSssLineBackground{background-color: #00C300}.heateorSssLiveJournalBackground{background-color: #EDEDED}.heateorSssMailRuBackground{background-color: #356FAC}.heateorSssMendeleyBackground{background-color: #A70805}.heateorSssMeneameBackground{background-color: #FF7D12}.heateorSssMixiBackground{background-color: #EDEDED}.heateorSssMySpaceBackground{background-color: #2A2A2A}.heateorSssNetlogBackground{background-color: #2A2A2A}.heateorSssNetvouzBackground{background-color: #c0ff00}.heateorSssNewsVineBackground{background-color: #055D00}.heateorSssNUjijBackground{background-color: #D40000}.heateorSssOdnoklassnikiBackground{background-color: #F2720C}.heateorSssOknotizieBackground{background-color: #fdff88}.heateorSssOutlookcomBackground{background-color: #0072C6}.heateorSssPapalyBackground{background-color: #3AC0F6}.heateorSssPinboardBackground{background-color: #1341DE}.heateorSssPlurkBackground{background-color: #CF682F}.heateorSssPocketBackground{background-color: #f0f0f0}.heateorSssPolyvoreBackground{background-color: #2A2A2A}.heateorSssPrintFriendlyBackground{background-color: #61D1D5}.heateorSssProtopageBookmarksBackground{background-color: #413FFF}.heateorSssPushaBackground{background-color: #0072B8}.heateorSssQzoneBackground{background-color: #2B82D9}.heateorSssRefindBackground{background-color: #1492ef}.heateorSssRediffMyPageBackground{background-color: #D20000}.heateorSssRenrenBackground{background-color: #005EAC}.heateorSssSegnaloBackground{background-color: #fdff88}.heateorSssSinaWeiboBackground{background-color: #ff0}.heateorSssSiteJotBackground{background-color: #ffc800}.heateorSssSkypeBackground{background-color: #00AFF0}.heateorSssSMSBackground{background-color: #6ebe45}.heateorSssSlashdotBackground{background-color: #004242}.heateorSssStumpediaBackground{background-color: #EDEDED}.heateorSssSvejoBackground{background-color: #fa7aa3}.heateorSssSymbalooFeedsBackground{background-color: #6DA8F7}.heateorSssTelegramBackground{background-color: #3DA5f1}.heateorSssTrelloBackground{background-color: #1189CE}.heateorSssTuentiBackground{background-color: #0075C9}.heateorSssTwiddlaBackground{background-color: #EDEDED}.heateorSssTypePadPostBackground{background-color: #2A2A2A}.heateorSssViadeoBackground{background-color: #2A2A2A}.heateorSssViberBackground{background-color: #8B628F}.heateorSssWaneloBackground{background-color: #fff}.heateorSssWebnewsBackground{background-color: #CC2512}.heateorSssWordPressBackground{background-color: #464646}.heateorSssWykopBackground{background-color: #367DA9}.heateorSssYahooMailBackground{background-color: #400090}.heateorSssYahooMessengerBackground{background-color: #400090}.heateorSssYoolinkBackground{background-color: #A2C538}.heateorSssYouMobBackground{background-color: #3B599D}i.heateorSssWhatsappBackground a{display: inline!important}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_like{width:110px}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_recommend{width:145px}div.heateor_sss_horizontal_sharing li.heateor_sss_twitter_tweet{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share{width:117px}div.heateor_sss_horizontal_sharing li.heateor_sss_google_plusone{width:65px}div.heateor_sss_horizontal_sharing li.heateor_sss_buffer_share{width:81px;}div.heateor_sss_horizontal_sharing li.heateor_sss_reddit_badge{width:130px}div.heateor_sss_horizontal_sharing li.heateor_sss_yummly{width:81px}div.heateor_sss_horizontal_sharing li.heateor_sss_google_plus_share{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_pinterest_pin{width:76px}div.heateor_sss_horizontal_sharing li.heateor_sss_xing{width:98px}div.heateor_sss_horizontal_sharing .heateor_sss_stumbleupon{width:80px}i.heateorSssLineBackground a{display: inline!important;}.heateor_sss_sharing_container a{padding:0!important;box-shadow:none!important;border:none!important}.heateorSssClear{clear:both;}li.heateor_sss_google_plusone div, li.heateor_sss_google_plus_share div{display:block!important}div.course_instructor_widget .heateor_sss_vertical_sharing{display:none!important;}@media screen and (max-width:783px){#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#heateor_sss_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}
|
1 |
+
@charset "utf-8";#heateor_sss_error{color:red;margin:7px 0}.heateor_sss_login_container{margin:2px 0}.heateor_sss_login_container img,.heateor_sss_sharing_container img{cursor:pointer;margin:2px;border:none}.heateor_sss_login_container img{display:none;float:left}#heateor_sss_loading_image{display:block!important;float:none}.heateor_sss_error{background-color:#FFFFE0;border:1px solid #E6DB55;padding:5px;margin:10px}#heateor_sss_sharing_more_providers{position:fixed;top:50%;left:47%;background:#FAFAFA;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#heateor_sss_popup_bg{background:url(../../images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#heateor_sss_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58B8F8!important;border-bottom:1px solid #D7D7D7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#heateor_sss_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content{background:#FAFAFA;border-radius:4px;color:#555;height:100%;width:100%}#heateor_sss_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#heateor_sss_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#heateor_sss_sharing_more_content .all-services ul{margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#heateor_sss_sharing_more_content .all-services ul li{margin:0;background:0 0!important;float:left;width:33.3333%!important;text-align:left!important}#heateor_sss_sharing_more_providers .close-button img{margin:0;}#heateor_sss_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#heateor_sss_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-13px;top:-11px}#heateor_sss_sharing_more_providers .filter input.search{width:94%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 auto;padding:5px 8px 5px 10px;border:1px solid #ccc!important;color:#000;background:#FFF!important;font-size:16px!important;text-align:left!important}#heateor_sss_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #D7D7D7;padding:6px 0;width:100%;color:#fff}#heateor_sss_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#heateor_sss_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#heateor_sss_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:18px;height:auto;line-height:28px;overflow:hidden;padding:8px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none}.heateor_sss_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58B8F8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.heateor_sss_share_count,.heateor_sss_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}ul.heateor_sss_login_ul,ul.heateor_sss_sharing_ul{list-style:none!important;padding-left:0!important}.heateorSssXingButton{background-position:-64px 0;width:32px;height:32px;display:block}.heateorSssFacebookButton{background-position:0 0;width:32px;height:32px;display:none}.heateorSssLiveButton{background-position:-32px -96px;width:32px;height:32px;display:block}.heateorSssGoogleButton{background-position:-32px 0;width:32px;height:32px;display:none}.heateorSssInstagramButton{background-position:0 -32px;width:32px;height:32px;display:block!important}.heateorSssLinkedinButton{background-position:-32px -32px;width:32px;height:32px;display:none}.heateorSssTwitterButton{background-position:0 -64px;width:32px;height:32px;display:block!important}.heateorSssVkontakteButton{background-position:-32px -64px;width:32px;height:32px;display:none}ul.heateor_sss_sharing_ul{margin:1px 0!important}#heateor_sss_sharing_popup_close img{opacity: 1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}ul.heateor_sss_sharing_ul li.heateorSssSharingRound{background:0 0!important}.heateor_sss_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style: normal;font-size: .8em;visibility:hidden}ul.heateor_sss_sharing_ul li{float:left!important;margin:0!important;padding:0!important;list-style:none!important;border:none!important;clear:none!important;}.heateorSssSharing,.heateorSssSharingButton{display:block;cursor:pointer;margin:2px}ul.heateor_sss_login_ul li:before,ul.heateor_sss_sharing_ul li:before{content:none!important}.heateor_sss_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_share, div.heateor_sss_horizontal_counter li.heateor_sss_facebook_share{width:120px}li.heateor_sss_facebook_share .fb-share-button span,li.heateor_sss_facebook_like .fb-like span,li.heateor_sss_facebook_recommend .fb-like span{vertical-align:top!important}li.heateor_sss_facebook_like .fb-like span iframe,li.heateor_sss_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000}.heateor_sss_counter_container li{height:21px}.heateorSssInstagramBackground{background-color:#624E47}.heateorSssYummlyBackground{background-color:#E16120}.heateorSssBufferBackground{background-color:#000}.heateorSssDeliciousBackground{background-color:#53BEEE}.heateorSssFacebookBackground{background-color:#3C589A}.heateorSssDiggBackground{background-color:#006094}.heateorSssEmailBackground{background-color:#649A3F}.heateorSssFloatitBackground{background-color:#53BEEE}.heateorSssGoogleBackground{background-color:#dd4b39}.heateorSssGoogleplusBackground{background-color:#dd4b39}.heateorSssLinkedinBackground{background-color:#0077B5}.heateorSssMoreBackground{background-color:#EE8E2D}.heateorSssPinterestBackground{background-color:#CC2329}.heateorSssPrintBackground{background-color:#FD6500}.heateorSssRedditBackground{background-color:#247CED}.heateorSssStockTwitsBackground{background-color: #40576F}.heateorSssStumbleuponBackground{background-color:#EA4823}.heateorSssTumblrBackground{background-color:#29435D}.heateorSssTwitterBackground{background-color:#55acee}.heateorSssVkontakteBackground{background-color:#5E84AC}.heateorSssYahooBackground{background-color:#8F03CC}.heateorSssXingBackground{background-color:#00797D}.heateorSssInstagramBackground{background-color:#527FA4}.heateorSssWhatsappBackground{background-color:#55EB4C}.heateorSssTCBackground,.heateorSssTCBackground:hover{border-width: 0!important;background-color:transparent;}.heateorSssTCBackground{background-color:transparent!important;font-style:normal!important;word-wrap:normal;color:#666;line-height:1;visibility:hidden;}.heateorSssSharingSvg{width:100%;height:100%}.heateorSssSharing{float:left;border:none}.heateorSssSharingArrow{background-color:#000!important;height:16px;width:16px;cursor:pointer;margin-top:10px}.heateorSssPushIn{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDcgNiBxIDIgNiAxMCA2IHYgLTYgbCA2IDkgbCAtNiA5IHYgLTYgcSAtMTAgMiAtMTAgLTEyIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZT0iI2ZmZiIgZmlsbD0id2hpdGUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPjwvc3ZnPg==) left no-repeat}.heateorSssPullOut{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAzMCAzMCI+DQo8cGF0aCBkPSJNIDIzIDYgcSAtMiA2IC0xMCA2IHYgLTYgbCAtNiA5IGwgNiA5IHYgLTYgcSAxMCAyIDEwIC0xMiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiNmZmYiIGZpbGw9IndoaXRlIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD48L3N2Zz4=) left no-repeat}.heateorSssCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0!important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}div.heateorSssTotalShareCount{word-wrap:normal!important;font-weight: bolder;font-family: sans-serif;padding: 0;margin: 0;text-align:center}div.heateorSssTotalShareText{word-wrap:normal!important;margin: 0;padding: 0;text-align: center;}div.heateor_sss_horizontal_sharing li{width:auto}.heateorSssAIMBackground{background-color: #10ff00}.heateorSssAmazonWishListBackground{background-color: #ffe000}.heateorSssAOLMailBackground{background-color: #2A2A2A}.heateorSssAppnetBackground{background-color: #5D5D5D}.heateorSssBaiduBackground{background-color: #2319DC}.heateorSssBalatarinBackground{background-color: #fff}.heateorSssBibSonomyBackground{background-color: #000}.heateorSssBittyBrowserBackground{background-color: #EFEFEF}.heateorSssBlinklistBackground{background-color: #3D3C3B}.heateorSssBloggerPostBackground{background-color: #FDA352}.heateorSssBlogMarksBackground{background-color: #535353}.heateorSssBookmarksfrBackground{background-color: #E8EAD4}.heateorSssBoxnetBackground{background-color: #1A74B0}.heateorSssBuddyMarksBackground{background-color: #ffd400}.heateorSssCare2NewsBackground{background-color: #6EB43F}.heateorSssCiteULikeBackground{background-color: #2781CD}.heateorSssCommentBackground{background-color: #444}.heateorSssCopyLinkBackground{background-color: #FFC112}.heateorSssDiaryRuBackground{background-color: #E8D8C6}.heateorSssDiasporaBackground{background-color: #2E3436}.heateorSssDiHITTBackground{background-color: #FF6300}.heateorSssDiasporaBackground{background-color: #0166FF}.heateorSssDiigoBackground{background-color: #4A8BCA}.heateorSssDoubanBackground{background-color: #497700}.heateorSssDraugiemBackground{background-color: #ffad66}.heateorSssDZoneBackground{background-color: #fff088}.heateorSssEvernoteBackground{background-color: #8BE056}.heateorSssFacebookMessengerBackground{background-color: #0084FF}.heateorSssFarkBackground{background-color: #555}.heateorSssFlipboardBackground{background-color: #CC0000}.heateorSssFolkdBackground{background-color: #0F70B2}.heateorSssGoogleClassroomBackground{background-color: #FFC112}.heateorSssGoogleBookmarksBackground{background-color: #CB0909}.heateorSssGoogleGmailBackground{background-color: #E5E5E5}.heateorSssHackerNewsBackground{background-color: #F60}.heateorSssHatenaBackground{background-color: #00A6DB}.heateorSssInstapaperBackground{background-color: #EDEDED}.heateorSssJamespotBackground{background-color: #FF9E2C}.heateorSssKakaoBackground{background-color: #FCB700}.heateorSssKikBackground{background-color: #2A2A2A}.heateorSssKindleItBackground{background-color: #2A2A2A}.heateorSssKnownBackground{background-color: #fff101}.heateorSssLineBackground{background-color: #00C300}.heateorSssLiveJournalBackground{background-color: #EDEDED}.heateorSssMailRuBackground{background-color: #356FAC}.heateorSssMendeleyBackground{background-color: #A70805}.heateorSssMeneameBackground{background-color: #FF7D12}.heateorSssMixiBackground{background-color: #EDEDED}.heateorSssMySpaceBackground{background-color: #2A2A2A}.heateorSssNetlogBackground{background-color: #2A2A2A}.heateorSssNetvouzBackground{background-color: #c0ff00}.heateorSssNewsVineBackground{background-color: #055D00}.heateorSssNUjijBackground{background-color: #D40000}.heateorSssOdnoklassnikiBackground{background-color: #F2720C}.heateorSssOknotizieBackground{background-color: #fdff88}.heateorSssOutlookcomBackground{background-color: #0072C6}.heateorSssPapalyBackground{background-color: #3AC0F6}.heateorSssPinboardBackground{background-color: #1341DE}.heateorSssPlurkBackground{background-color: #CF682F}.heateorSssPocketBackground{background-color: #f0f0f0}.heateorSssPolyvoreBackground{background-color: #2A2A2A}.heateorSssPrintFriendlyBackground{background-color: #61D1D5}.heateorSssProtopageBookmarksBackground{background-color: #413FFF}.heateorSssPushaBackground{background-color: #0072B8}.heateorSssQzoneBackground{background-color: #2B82D9}.heateorSssRefindBackground{background-color: #1492ef}.heateorSssRediffMyPageBackground{background-color: #D20000}.heateorSssRenrenBackground{background-color: #005EAC}.heateorSssSegnaloBackground{background-color: #fdff88}.heateorSssSinaWeiboBackground{background-color: #ff0}.heateorSssSiteJotBackground{background-color: #ffc800}.heateorSssSkypeBackground{background-color: #00AFF0}.heateorSssSMSBackground{background-color: #6ebe45}.heateorSssSlashdotBackground{background-color: #004242}.heateorSssStumpediaBackground{background-color: #EDEDED}.heateorSssSvejoBackground{background-color: #fa7aa3}.heateorSssSymbalooFeedsBackground{background-color: #6DA8F7}.heateorSssTelegramBackground{background-color: #3DA5f1}.heateorSssTrelloBackground{background-color: #1189CE}.heateorSssTuentiBackground{background-color: #0075C9}.heateorSssTwiddlaBackground{background-color: #EDEDED}.heateorSssTypePadPostBackground{background-color: #2A2A2A}.heateorSssViadeoBackground{background-color: #2A2A2A}.heateorSssViberBackground{background-color: #8B628F}.heateorSssWaneloBackground{background-color: #fff}.heateorSssWebnewsBackground{background-color: #CC2512}.heateorSssWordPressBackground{background-color: #464646}.heateorSssWykopBackground{background-color: #367DA9}.heateorSssYahooMailBackground{background-color: #400090}.heateorSssYahooMessengerBackground{background-color: #400090}.heateorSssYoolinkBackground{background-color: #A2C538}.heateorSssYouMobBackground{background-color: #3B599D}i.heateorSssWhatsappBackground a{display: inline!important}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_like{width:110px}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_recommend{width:145px}div.heateor_sss_horizontal_sharing li.heateor_sss_twitter_tweet{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share{width:117px}div.heateor_sss_horizontal_sharing li.heateor_sss_google_plusone{width:65px}div.heateor_sss_horizontal_sharing li.heateor_sss_buffer_share{width:81px;}div.heateor_sss_horizontal_sharing li.heateor_sss_reddit_badge{width:130px}div.heateor_sss_horizontal_sharing li.heateor_sss_yummly{width:81px}div.heateor_sss_horizontal_sharing li.heateor_sss_google_plus_share{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_pinterest_pin{width:76px}div.heateor_sss_horizontal_sharing li.heateor_sss_xing{width:98px}div.heateor_sss_horizontal_sharing .heateor_sss_stumbleupon{width:80px}i.heateorSssLineBackground a{display: inline!important;}.heateor_sss_sharing_container a{padding:0!important;box-shadow:none!important;border:none!important}.heateorSssClear{clear:both;}li.heateor_sss_google_plusone div, li.heateor_sss_google_plus_share div{display:block!important}div.course_instructor_widget .heateor_sss_vertical_sharing{display:none!important;}@media screen and (max-width:783px){#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}#heateor_sss_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92%}}
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Heateor
|
|
3 |
Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
|
4 |
Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, google +1, google plus share
|
5 |
Requires at least: 2.5.0
|
6 |
-
Tested up to: 4.8
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
@@ -17,8 +17,6 @@ This is the Simplest and Smoothest Social Sharing plugin with optimized and grea
|
|
17 |
|
18 |
**Note:** Plugin will not work on local server. You should have an online website for the plugin to function properly.
|
19 |
|
20 |
-
**Available in English, <a target="_blank" href="https://fr.wordpress.org/plugins/sassy-social-share/">French</a>, <a target="_blank" href="https://pl.wordpress.org/plugins/sassy-social-share/">Polish</a> and <a target="_blank" href="https://ru.wordpress.org/plugins/sassy-social-share/">Russian</a>
|
21 |
-
|
22 |
= Feature list =
|
23 |
* Around **100 Social Sharing/Bookmarking** services
|
24 |
* Share counts are supported for Facebook, Linkedin, Twitter, Buffer, Reddit, Pinterest, Stumbleupon and Vkontakte
|
@@ -119,6 +117,11 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
119 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
120 |
|
121 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
122 |
= 3.1.2 =
|
123 |
* Google Plus share counts are no longer supported, as the official API no longer serves the share count
|
124 |
|
@@ -433,4 +436,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
433 |
* [Improvement] Social Share dialogue was being opened in new tab instead of the popup window, in the latest version of Google Chrome browser
|
434 |
|
435 |
= 3.1.2 =
|
436 |
-
* Google Plus share counts are no longer supported, as the official API no longer serves the share count
|
|
|
|
|
|
|
|
|
|
3 |
Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
|
4 |
Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, google +1, google plus share
|
5 |
Requires at least: 2.5.0
|
6 |
+
Tested up to: 4.8.2
|
7 |
+
Stable tag: 3.1.3
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
17 |
|
18 |
**Note:** Plugin will not work on local server. You should have an online website for the plugin to function properly.
|
19 |
|
|
|
|
|
20 |
= Feature list =
|
21 |
* Around **100 Social Sharing/Bookmarking** services
|
22 |
* Share counts are supported for Facebook, Linkedin, Twitter, Buffer, Reddit, Pinterest, Stumbleupon and Vkontakte
|
117 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
118 |
|
119 |
== Changelog ==
|
120 |
+
= 3.1.3 =
|
121 |
+
* [Improvement] Improved share counts functionality
|
122 |
+
* [Improvement] Performance improvement
|
123 |
+
* [Bugfix] "Auto-adjust according to screen width" option was not working for horizontal sticky interface, in a few cases
|
124 |
+
|
125 |
= 3.1.2 =
|
126 |
* Google Plus share counts are no longer supported, as the official API no longer serves the share count
|
127 |
|
436 |
* [Improvement] Social Share dialogue was being opened in new tab instead of the popup window, in the latest version of Google Chrome browser
|
437 |
|
438 |
= 3.1.2 =
|
439 |
+
* Google Plus share counts are no longer supported, as the official API no longer serves the share count
|
440 |
+
|
441 |
+
= 3.1.3 =
|
442 |
+
* [Improvement] Improved share counts functionality
|
443 |
+
* [Improvement] Performance improvement
|
444 |
+
* [Bugfix] "Auto-adjust according to screen width" option was not working for horizontal sticky interface, in a few cases
|
sassy-social-share.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Plugin Name: Sassy Social Share
|
8 |
* Plugin URI: https://www.heateor.com
|
9 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
10 |
-
* Version: 3.1.
|
11 |
* Author: Team Heateor
|
12 |
* Author URI: https://www.heateor.com
|
13 |
* Text Domain: sassy-social-share
|
@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
21 |
die;
|
22 |
}
|
23 |
|
24 |
-
define( 'HEATEOR_SSS_VERSION', '3.1.
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
|
26 |
|
27 |
// plugin core class object
|
7 |
* Plugin Name: Sassy Social Share
|
8 |
* Plugin URI: https://www.heateor.com
|
9 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Google+, Pinterest, WhatsApp and over 100 more.
|
10 |
+
* Version: 3.1.3
|
11 |
* Author: Team Heateor
|
12 |
* Author URI: https://www.heateor.com
|
13 |
* Text Domain: sassy-social-share
|
21 |
die;
|
22 |
}
|
23 |
|
24 |
+
define( 'HEATEOR_SSS_VERSION', '3.1.3' );
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path(__FILE__) );
|
26 |
|
27 |
// plugin core class object
|
uninstall.php
CHANGED
@@ -25,6 +25,8 @@ $heateor_sss_options_to_delete = array(
|
|
25 |
'heateor_sss',
|
26 |
'heateor_sss_feedback_submitted',
|
27 |
'heateor_sss_version',
|
|
|
|
|
28 |
'widget_heateor_sss_sharing',
|
29 |
'widget_heateor_sss_floating_sharing'
|
30 |
);
|
25 |
'heateor_sss',
|
26 |
'heateor_sss_feedback_submitted',
|
27 |
'heateor_sss_version',
|
28 |
+
'heateor_sss_custom_url_shares',
|
29 |
+
'heateor_sss_homepage_shares',
|
30 |
'widget_heateor_sss_sharing',
|
31 |
'widget_heateor_sss_floating_sharing'
|
32 |
);
|