| 1 |
<?php |
| 2 |
namespace MBSocial; |
| 3 |
defined('ABSPATH') or die('No direct access permitted'); |
| 4 |
|
| 5 |
class roundStyle extends style |
| 6 |
{ |
| 7 |
public $class = 'round'; |
| 8 |
public $name = 'round'; |
| 9 |
public $description = ' Round Buttons Basic '; |
| 10 |
|
| 11 |
public $has_label = true; |
| 12 |
|
| 13 |
|
| 14 |
public function __construct() |
| 15 |
{ |
| 16 |
parent::__construct(); |
| 17 |
|
| 18 |
$this->css['mb-social']['normal']['border-radius'] = '50% 50%'; |
| 19 |
} |
| 20 |
|
| 21 |
|
| 22 |
} // class |
| 23 |
|
| 24 |
roundStyle::registerStyle('round'); |
| 25 |
|