PluginProbe
Social Share Buttons / 1.2
Social Share Buttons v1.2
trunk 0.9 1.0 1.1 1.1.1 1.1.2 1.10 1.11 1.12 1.15 1.16 1.17 1.18 1.19 1.2 1.20 1.3 1.30 1.4 1.5 1.6 1.7 1.8 1.9
← All changes | classes/class-style.php +0 -9 1.171.2 View file →
@@ -43,9 +43,8 @@
43 43 'clear' => 'both',
44 44 'z-index' => 9999,
45 45 'position' => 'relative',
46 46 'width' => '100%',
47 - 'max-width' => 'none',
48 47 'line-height' => '1.1',
49 48 'box-sizing' => 'border-box',
50 49 ),
51 50 // 'hover' => '',
@@ -191,11 +190,8 @@
191 190 case 'hover';
192 191 /*$color = $css['mb-social']['normal']['background-color'];
193 192 $css = $this->addCSS('background-color', 'darken(' . $color . ', 20%)', 'mb-social', 'hover', $css);
194 193 */
195 - //$css = $this->addCSS('transition', 'opacity 1.2s linear', 'mb-icon-wrapper', 'normal', $css);
196 - //$css = $this->addCSS('transition', 'opacity 1.2s linear', 'mb-label', 'hover', $css);
197 -
198 194 break;
199 195 case 'lift':
200 196 $line_height = intval($args['line_height']) * 1.5;
201 197
@@ -635,9 +631,8 @@
635 631
636 632 $statement = 'inline-block';
637 633
638 634 $css = $this->addCSS('display',$statement, $this->items[$i], $pseudo, $css);
639 - // $css = $this->addCSS('opacity','1', $this->items[$i], $pseudo, $css);
640 635 unset($hides[$i]);
641 636 break;
642 637 }
643 638 }
@@ -651,9 +646,8 @@
651 646 unset($hides[$i]);
652 647 $statement = 'inline-block';
653 648
654 649 $css = $this->addCSS('display', $statement, $this->items[$i], $pseudo, $css);
655 - //$css = $this->addCSS('opacity', '1', $this->items[$i], $pseudo, $css);
656 650 }
657 651 }
658 652 else { // if display list is just one item.
659 653 $hides = $this->items;
@@ -660,17 +654,14 @@
660 654 unset($hides[$item]);
661 655
662 656 $statement = 'inline-block';
663 657
664 -
665 658 $css = $this->addCSS('display',$statement,$this->items[$item], $pseudo, $css);
666 - //$css = $this->addCSS('opacity','1',$this->items[$item], $pseudo, $css);
667 659 }
668 660
669 661 foreach($hides as $name => $cname)
670 662 {
671 663 $css = $this->addCSS('display','none', $cname, $pseudo, $css);
672 - //$css = $this->addCSS('opacity','0', $cname, $pseudo, $css);
673 664 }
674 665
675 666 }
676 667