Simple Social Icons - Version 1.0.1

Version Description

  • Made color and background color more specific in the CSS to avoid conflicts
Download this release

Release Info

Developer nathanrice
Plugin Icon 128x128 Simple Social Icons
Version 1.0.1
Comparing to
See all releases

Code changes from version 1.0.0 to 1.0.1

Files changed (2) hide show
  1. readme.txt +6 -3
  2. simple-social-icons.php +5 -5
readme.txt CHANGED
@@ -3,13 +3,13 @@ Contributors: nathanrice, studiopress
3
  Tags: social media, social networking, social profiles
4
  Requires at least: 3.5
5
  Tested up to: 3.5.1
6
- Stable tag: 1.0.0
7
 
8
  This plugin allows you to insert social icons in any widget area.
9
 
10
  == Description ==
11
 
12
- Simple Social Icons is an easy to use, customizable way to display icons that link visitors to your various social profiles. With it, you can easily choose which profiles to link to, customize the color and size of your icons, as well as align them to the left or right, all from the widget form (no settings page necessary!).
13
 
14
  == Installation ==
15
 
@@ -64,4 +64,7 @@ No, not at this time.
64
  * Added Instagram icon
65
 
66
  = 1.0.0 =
67
- * Switched to icon fonts, rather than images
 
 
 
3
  Tags: social media, social networking, social profiles
4
  Requires at least: 3.5
5
  Tested up to: 3.5.1
6
+ Stable tag: 1.0.1
7
 
8
  This plugin allows you to insert social icons in any widget area.
9
 
10
  == Description ==
11
 
12
+ Simple Social Icons is an easy to use, customizable way to display icons that link visitors to your various social profiles. With it, you can easily choose which profiles to link to, customize the color and size of your icons, as well as align them to the left, center, or right, all from the widget form (no settings page necessary!).
13
 
14
  == Installation ==
15
 
64
  * Added Instagram icon
65
 
66
  = 1.0.0 =
67
+ * Switched to icon fonts, rather than images
68
+
69
+ = 1.0.1 =
70
+ * Made color and background color more specific in the CSS to avoid conflicts
simple-social-icons.php CHANGED
@@ -6,7 +6,7 @@ Description: A simple, CSS and icon font driven social icons widget.
6
  Author: Nathan Rice
7
  Author URI: http://www.nathanrice.net/
8
 
9
- Version: 1.0.0
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
@@ -293,18 +293,18 @@ class Simple_Social_Icons_Widget extends WP_Widget {
293
  $css = '
294
  .simple-social-icons ul li a,
295
  .simple-social-icons ul li a:hover {
296
- background: ' . $instance['background_color'] . ';
297
  -moz-border-radius: ' . $instance['border_radius'] . 'px
298
  -webkit-border-radius: ' . $instance['border_radius'] . 'px;
299
  border-radius: ' . $instance['border_radius'] . 'px;
300
- color: ' . $instance['icon_color'] . ';
301
  font-size: ' . $font_size . 'px;
302
  padding: ' . $icon_padding . 'px;
303
  }
304
 
305
  .simple-social-icons ul li a:hover {
306
- background-color: ' . $instance['background_color_hover'] . ';
307
- color: ' . $instance['icon_color_hover'] . ';
308
  }';
309
 
310
  /** Minify a bit */
6
  Author: Nathan Rice
7
  Author URI: http://www.nathanrice.net/
8
 
9
+ Version: 1.0.1
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
293
  $css = '
294
  .simple-social-icons ul li a,
295
  .simple-social-icons ul li a:hover {
296
+ background-color: ' . $instance['background_color'] . ' !important;
297
  -moz-border-radius: ' . $instance['border_radius'] . 'px
298
  -webkit-border-radius: ' . $instance['border_radius'] . 'px;
299
  border-radius: ' . $instance['border_radius'] . 'px;
300
+ color: ' . $instance['icon_color'] . ' !important;
301
  font-size: ' . $font_size . 'px;
302
  padding: ' . $icon_padding . 'px;
303
  }
304
 
305
  .simple-social-icons ul li a:hover {
306
+ background-color: ' . $instance['background_color_hover'] . ' !important;
307
+ color: ' . $instance['icon_color_hover'] . ' !important;
308
  }';
309
 
310
  /** Minify a bit */