| 1 |
<?php |
| 2 |
/* |
| 3 |
* Page Name: Style |
| 4 |
*/ |
| 5 |
|
| 6 |
use CounterBox\Admin\CreateFields; |
| 7 |
|
| 8 |
defined( 'ABSPATH' ) || exit; |
| 9 |
|
| 10 |
$page_opt = include( 'options/style.php' ); |
| 11 |
$field = new CreateFields( $options, $page_opt ); |
| 12 |
|
| 13 |
?> |
| 14 |
|
| 15 |
<div class="wpie-fieldset"> |
| 16 |
<div class="wpie-legend"><?php esc_html_e( 'Style', 'counter-box' ); ?></div> |
| 17 |
<div class="wpie-fields"> |
| 18 |
<?php $field->create( 'width' ); ?> |
| 19 |
<?php $field->create( 'height' ); ?> |
| 20 |
<?php $field->create( 'background' ); ?> |
| 21 |
<?php $field->create( 'border_radius' ); ?> |
| 22 |
</div> |
| 23 |
<div class="wpie-fields"> |
| 24 |
<?php $field->create( 'border_style' ); ?> |
| 25 |
<?php $field->create( 'border_width' ); ?> |
| 26 |
<?php $field->create( 'border_color' ); ?> |
| 27 |
</div> |
| 28 |
</div> |
| 29 |
|
| 30 |
<?php |