| 1 |
<?php |
| 2 |
|
| 3 |
defined( 'ABSPATH' ) || exit; |
| 4 |
|
| 5 |
return [ |
| 6 |
|
| 7 |
'inline' => [ |
| 8 |
'type' => 'checkbox', |
| 9 |
'name' => '[inline_css]', |
| 10 |
'title' => __( 'Inline', 'wp-coder' ), |
| 11 |
'text' => __( 'Enable', 'wp-coder' ), |
| 12 |
'class' => 'is-reverse', |
| 13 |
'tooltip' => __( 'Load CSS inline instead of from an external file.', 'wp-coder' ), |
| 14 |
], |
| 15 |
|
| 16 |
'minified' => [ |
| 17 |
'type' => 'checkbox', |
| 18 |
'name' => '[minified_css]', |
| 19 |
'title' => __( 'Minified', 'wp-coder' ), |
| 20 |
'text' => __( 'Enable', 'wp-coder' ), |
| 21 |
'class' => 'is-reverse', |
| 22 |
'tooltip' => __( 'Compress CSS by removing spaces and line breaks.', 'wp-coder' ), |
| 23 |
], |
| 24 |
|
| 25 |
'css_code' => [ |
| 26 |
'type' => 'textarea', |
| 27 |
'name' => 'css_code', |
| 28 |
'class' => 'is-full' |
| 29 |
], |
| 30 |
|
| 31 |
]; |