Changeset 600605
- Timestamp:
- 09/18/2012 03:39:42 PM (14 years ago)
- Location:
- wpsocialite/trunk
- Files:
-
- 3 edited
-
lib/wpsocialite.css (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
wpsocialite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpsocialite/trunk/lib/wpsocialite.css
r598434 r600605 20 20 */ 21 21 22 #large { display: block; list-style: none; padding: 0; margin: 20px; }23 #large > li { display: block; margin: 0; padding: 10px; float: left; }24 #large .socialite { display: block; position: relative; background: url('social-sprite.png') 0 0 no-repeat; }25 #large .socialite-loaded { background: none !important; }26 #large .twitter-share { width: 55px; height: 65px; background-position: 0 0; }27 #large .googleplus-one { width: 50px; height: 65px; background-position: -75px 0; }28 #large .facebook-like { width: 50px; height: 65px; background-position: -145px 0; }29 #large .linkedin-share { width: 60px; height: 65px; background-position: -215px 0; }30 #large .pinterest-pinit { width: 50px; height: 65px; background-position: -367px 0; }22 .large { display: block; list-style: none; padding: 0; margin: 20px; } 23 .large > li { display: block; margin: 0; padding: 10px; float: left; } 24 .large .socialite { display: block; position: relative; background: url('social-sprite.png') 0 0 no-repeat; } 25 .large .socialite-loaded { background: none !important; } 26 .large .twitter-share { width: 55px; height: 65px; background-position: 0 0; } 27 .large .googleplus-one { width: 50px; height: 65px; background-position: -75px 0; } 28 .large .facebook-like { width: 50px; height: 65px; background-position: -145px 0; } 29 .large .linkedin-share { width: 60px; height: 65px; background-position: -215px 0; } 30 .large .pinterest-pinit { width: 50px; height: 65px; background-position: -367px 0; } 31 31 32 32 /* … … 34 34 */ 35 35 36 #small-load { margin: 0 0 0.625em 0; font-weight: bold; padding: 5px; }36 .small-load { margin: 0 0 0.625em 0; font-weight: bold; padding: 5px; } 37 37 38 #small { display: block; list-style: none; padding: 10px; margin: 10px; }39 #small > li { margin: 0; display:inline; float:left; width:20%; }40 #small .socialite { display: block; position: relative; width: 150px; height: 30px; background: url('custom-default.png') 0 0 no-repeat; }41 #small .socialite-loaded { background: none; }38 .small { display: block; list-style: none; padding: 10px; margin: 10px; } 39 .small > li { margin: 0; display:inline; float:left; width:20%; } 40 .small .socialite { display: block; position: relative; width: 150px; height: 30px; background: url('custom-default.png') 0 0 no-repeat; } 41 .small .socialite-loaded { background: none; } 42 42 43 #small .twitter-share { background-position: 0 0; }44 #small .googleplus-one { background-position: 0 -45px; }45 #small .facebook-like { background-position: 0 -90px; }46 #small .linkedin-share { background-position: 0 -135px; }47 #small .pinterest-pinit { background-position: 0 -175px; }43 .small .twitter-share { background-position: 0 0; } 44 .small .googleplus-one { background-position: 0 -45px; } 45 .small .facebook-like { background-position: 0 -90px; } 46 .small .linkedin-share { background-position: 0 -135px; } 47 .small .pinterest-pinit { background-position: 0 -175px; } -
wpsocialite/trunk/readme.txt
r599788 r600605 5 5 Requires at least: 3.0 6 6 Tested up to: 3.4.2 7 Stable tag: 1. 27 Stable tag: 1.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 50 50 == Changelog == 51 51 52 = 1.3 = 53 * Major Bugfix, CSS ID calls causing feed issues. Changed to classes. 54 55 52 56 = 1.2 = 53 57 * Added ability to enable/disable different social networks. Choose which to display! -
wpsocialite/trunk/wpsocialite.php
r599788 r600605 5 5 Description: No one likes long load times! Yet we all want to be able to share our content via Facebook, Twitter, and all other social networks. These take a long time to load. Paradox? Not anymore! With WPSocialite (utilizing David Bushnell's amazing SocialiteJS plugin [http://www.socialitejs.com/]) we can manage the loading process of our social sharing links. Load them on hover, on page scroll, and more! 6 6 Author: Tom Morton 7 Version: 1. 27 Version: 1.3 8 8 Author URI: http://twmorton.com/ 9 9 … … 122 122 $return = ''; 123 123 124 $return .= '<ul id="'.$size.'" class="social-buttons cf">';124 $return .= '<ul class="'.$size.'" class="social-buttons cf">'; 125 125 126 126 foreach ($buttons as $button){
Note: See TracChangeset
for help on using the changeset viewer.