PluginProbe
Social Share Buttons / trunk
Social Share Buttons vtrunk
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
share-button / classes / styles / _rectangle-style.php

_rectangle-style.php in Social Share Buttons trunk, at classes/styles/_rectangle-style.php

21 lines 364 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace MBSocial;
3 defined('ABSPATH') or die('No direct access permitted');
4
5 $styles[] = 'rectStyle';
6 class rectStyle extends style
7 {
8 public $class = 'rectangle';
9 public $name = 'rectangle';
10 public $description = " Rectangle Buttons ";
11
12 public $width = '75';
13
14
15 public function mainCSS()
16 {
17 parent::mainCSS();
18 //$this->addCSS('width', '75px');
19 }
20 }
21