FormSettings.php
1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
return array(
'container_styles' => array(
'name' => 'container_styles',
'type' => 'fieldset',
'label' => __( 'Container Styles', 'ninja-forms-layout-styles' ),
'width' => 'full',
'selector' => '#nf-form-{ID}-cont'
),
'title_styles' => array(
'name' => 'title_styles',
'type' => 'fieldset',
'label' => __( 'Title Styles', 'ninja-forms-layout-styles' ),
'width' => 'full',
'selector' => '#nf-form-{ID}-cont .nf-form-title h3'
),
'row_styles' => array(
'name' => 'row_styles',
'type' => 'fieldset',
'label' => __( 'Row Styles', 'ninja-forms-layout-styles' ),
'width' => 'full',
'selector' => '#nf-form-{ID}-cont .nf-row'
),
'row-odd_styles' => array(
'name' => 'row-odd_styles',
'type' => 'fieldset',
'label' => __( 'Odd Row Styles', 'ninja-forms-layout-styles' ),
'width' => 'full',
'selector' => '#nf-form-{ID}-cont .nf-row:nth-child(odd)'
),
'success-msg_styles' => array(
'name' => 'success-msg_styles',
'type' => 'fieldset',
'label' => __( 'Success Response Message Styles', 'ninja-forms-layout-styles' ),
'width' => 'full',
'selector' => '#nf-form-{ID}-cont .nf-response-msg'
),
'error_msg_styles' => array(
'name' => 'error_msg_styles',
'type' => 'fieldset',
'label' => __( 'Error Response Message Styles', 'ninja-forms-layout-styles' ),
'width' => 'full',
'selector' => '#nf-form-{ID}-cont .nf-error-field-errors'
),
);