Version Description
- Fixed CSS conflict in some themes
Download this release
Release Info
| Developer | nathanrice |
| Plugin | |
| Version | 0.9.3 |
| Comparing to | |
| See all releases | |
Code changes from version 0.9.2 to 0.9.3
- readme.txt +5 -2
- simple-social-icons.php +23 -18
readme.txt
CHANGED
|
@@ -3,7 +3,7 @@ Contributors: nathanrice, studiopress
|
|
| 3 |
Tags: social media, social networking, social profiles
|
| 4 |
Requires at least: 3.3
|
| 5 |
Tested up to: 3.3.1
|
| 6 |
-
Stable tag: 0.9.
|
| 7 |
|
| 8 |
This plugin/widget allows you to insert social icons in any widget area.
|
| 9 |
|
|
@@ -34,4 +34,7 @@ No, not at this time.
|
|
| 34 |
|
| 35 |
= 0.9.2 =
|
| 36 |
* Added new profile options
|
| 37 |
-
* Changed default border radius to 3px
|
|
|
|
|
|
|
|
|
| 3 |
Tags: social media, social networking, social profiles
|
| 4 |
Requires at least: 3.3
|
| 5 |
Tested up to: 3.3.1
|
| 6 |
+
Stable tag: 0.9.3
|
| 7 |
|
| 8 |
This plugin/widget allows you to insert social icons in any widget area.
|
| 9 |
|
| 34 |
|
| 35 |
= 0.9.2 =
|
| 36 |
* Added new profile options
|
| 37 |
+
* Changed default border radius to 3px
|
| 38 |
+
|
| 39 |
+
= 0.9.3 =
|
| 40 |
+
* Fixed CSS conflict in some themes
|
simple-social-icons.php
CHANGED
|
@@ -6,7 +6,7 @@ Description: A simple, CSS and sprite driven social icons widget.
|
|
| 6 |
Author: Nathan Rice
|
| 7 |
Author URI: http://www.nathanrice.net/
|
| 8 |
|
| 9 |
-
Version: 0.9.
|
| 10 |
|
| 11 |
License: GNU General Public License v2.0 (or later)
|
| 12 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
|
@@ -46,22 +46,22 @@ class Simple_Social_Icons_Widget extends WP_Widget {
|
|
| 46 |
* Default widget option values.
|
| 47 |
*/
|
| 48 |
$this->defaults = array(
|
| 49 |
-
'title'
|
| 50 |
-
'new_window'
|
| 51 |
-
'size'
|
| 52 |
-
'border_radius'
|
| 53 |
-
'background_color'
|
| 54 |
'background_color_hover' => '#666666',
|
| 55 |
-
'alignment'
|
| 56 |
-
'dribbble'
|
| 57 |
-
'email'
|
| 58 |
-
'facebook'
|
| 59 |
-
'gplus'
|
| 60 |
-
'linkedin'
|
| 61 |
-
'pinterest'
|
| 62 |
-
'rss'
|
| 63 |
-
'stumbleupon'
|
| 64 |
-
'twitter'
|
| 65 |
);
|
| 66 |
|
| 67 |
/**
|
|
@@ -317,8 +317,13 @@ class Simple_Social_Icons_Widget extends WP_Widget {
|
|
| 317 |
.simple-social-icons .alignleft, .simple-social-icons .alignright {
|
| 318 |
margin: 0; padding: 0;
|
| 319 |
}
|
| 320 |
-
.simple-social-icons ul li
|
| 321 |
-
background: none
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 322 |
}
|
| 323 |
.simple-social-icons ul li a,
|
| 324 |
.simple-social-icons ul li a:hover {
|
| 6 |
Author: Nathan Rice
|
| 7 |
Author URI: http://www.nathanrice.net/
|
| 8 |
|
| 9 |
+
Version: 0.9.3
|
| 10 |
|
| 11 |
License: GNU General Public License v2.0 (or later)
|
| 12 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
| 46 |
* Default widget option values.
|
| 47 |
*/
|
| 48 |
$this->defaults = array(
|
| 49 |
+
'title' => '',
|
| 50 |
+
'new_window' => 0,
|
| 51 |
+
'size' => 32,
|
| 52 |
+
'border_radius' => 3,
|
| 53 |
+
'background_color' => '#999999',
|
| 54 |
'background_color_hover' => '#666666',
|
| 55 |
+
'alignment' => 'alignleft',
|
| 56 |
+
'dribbble' => '',
|
| 57 |
+
'email' => '',
|
| 58 |
+
'facebook' => '',
|
| 59 |
+
'gplus' => '',
|
| 60 |
+
'linkedin' => '',
|
| 61 |
+
'pinterest' => '',
|
| 62 |
+
'rss' => '',
|
| 63 |
+
'stumbleupon' => '',
|
| 64 |
+
'twitter' => '',
|
| 65 |
);
|
| 66 |
|
| 67 |
/**
|
| 317 |
.simple-social-icons .alignleft, .simple-social-icons .alignright {
|
| 318 |
margin: 0; padding: 0;
|
| 319 |
}
|
| 320 |
+
.simple-social-icons ul li {
|
| 321 |
+
background: none !important;
|
| 322 |
+
border: none !important;
|
| 323 |
+
float: left;
|
| 324 |
+
list-style-type: none !important;
|
| 325 |
+
margin: 0 5px !important;
|
| 326 |
+
padding: 0 !important;
|
| 327 |
}
|
| 328 |
.simple-social-icons ul li a,
|
| 329 |
.simple-social-icons ul li a:hover {
|
