Visual Form Builder - Version 3.0

Version Description

Download this release

Release Info

Developer mmuro
Plugin Icon 128x128 Visual Form Builder
Version 3.0
Comparing to
See all releases

Code changes from version 2.9.9 to 3.0

admin/assets/css/sass/partials/_buttons.scss ADDED
@@ -0,0 +1,206 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .vfb-btn {
2
+ font-size: 21px;
3
+ font-weight: 500;
4
+ line-height: 20px;
5
+ display: inline-block;
6
+ margin-bottom: 0;
7
+ padding: 15px 10px;
8
+ cursor: pointer;
9
+ text-align: center;
10
+ vertical-align: middle;
11
+ text-decoration: none;
12
+ color: #333333;
13
+ border: 1px solid #cccccc;
14
+ border-color: #e6e6e6 #e6e6e6 #bfbfbf;
15
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
16
+ border-bottom-color: #b3b3b3;
17
+ border-radius: 6px;
18
+ background-color: #f5f5f5;
19
+ background-repeat: repeat-x;
20
+ box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
21
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
22
+
23
+ &:hover,
24
+ &:focus {
25
+ transition: background-position 0.1s linear;
26
+ text-decoration: none;
27
+ color: #333333;
28
+ background-position: 0 -15px;
29
+ }
30
+
31
+ &:focus {
32
+ outline: thin dotted #333333;
33
+ outline: 5px auto -webkit-focus-ring-color;
34
+ outline-offset: -2px;
35
+ }
36
+
37
+ &.active,
38
+ &:active {
39
+ outline: 0;
40
+ background-image: none;
41
+ box-shadow: inset 0 2px 4px rgba(0,0,0,0.15), 0 1px 2px rgba(0,0,0,0.05);
42
+ }
43
+ }
44
+
45
+ .vfb-btn-primary {
46
+ color: #ffffff;
47
+ border-color: #0044cc #0044cc #002a80;
48
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
49
+ background-image: linear-gradient(to bottom, #0088cc, #0044cc);
50
+ background-color: #006dcc;
51
+ background-repeat: repeat-x;
52
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
53
+
54
+ &.active {
55
+ color: rgba(255, 255, 255, 0.75);
56
+ }
57
+
58
+ &:hover,
59
+ &:focus,
60
+ &:active,
61
+ &.active,
62
+ &.disabled,
63
+ &[disabled] {
64
+ color: #ffffff;
65
+ background-color: #0044cc;
66
+ }
67
+
68
+ &:active,
69
+ &.active {
70
+ background-color: #003399 \9;
71
+ }
72
+ }
73
+
74
+ .vfb-btn-inverse {
75
+ color: #ffffff;
76
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
77
+ background-color: #363636;
78
+ background-repeat: repeat-x;
79
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
80
+
81
+ &:hover,
82
+ &:focus,
83
+ &:active,
84
+ &.active,
85
+ &.disabled,
86
+ &[disabled] {
87
+ color: #ffffff;
88
+ background-color: #222222;
89
+ }
90
+ }
91
+
92
+ /* !Form Settings buttons */
93
+ .vfb-button {
94
+ font: 12px/normal sans-serif;
95
+ position: relative;
96
+ display: inline-block;
97
+ overflow: visible;
98
+ zoom: 1;
99
+ margin: 0;
100
+ padding: 0.5em 2.5em 0.5em 1em;
101
+ cursor: pointer;
102
+ white-space: nowrap;
103
+ text-decoration: none;
104
+ color: #333333;
105
+ border: 1px solid #d4d4d4;
106
+ border-radius: 0.2em;
107
+ outline: none;
108
+ background-color: #f5f5f5;
109
+ }
110
+
111
+ .vfb-button:hover,
112
+ .vfb-button:active,
113
+ .vfb-button.current {
114
+ color: #000000;
115
+ border-color: #929292;
116
+ border-bottom-color: #929292;
117
+ background-image: linear-gradient(#eeeeee, #cccccc);
118
+ background-color: #eeeeee;
119
+ }
120
+
121
+ .vfb-button.current {
122
+ font-weight: bold;
123
+ }
124
+
125
+ .vfb-button::-moz-focus-inner {
126
+ padding: 0;
127
+ border: 0;
128
+ }
129
+
130
+ .vfb-button.vfb-settings:hover,
131
+ .vfb-button.vfb-settings:focus,
132
+ .vfb-button.vfb-settings:active {
133
+ color: #3072b3;
134
+ }
135
+
136
+ .vfb-button.vfb-delete:hover,
137
+ .vfb-button.vfb-delete:focus,
138
+ .vfb-button.vfb-delete:active {
139
+ color: #990000;
140
+ }
141
+
142
+ .vfb-button.vfb-duplicate:hover,
143
+ .vfb-button.vfb-duplicate:focus,
144
+ .vfb-button.vfb-duplicate:active {
145
+ color: #008e0d;
146
+ }
147
+
148
+
149
+
150
+ .vfb-button-group {
151
+ display: inline-block;
152
+ margin: 10px 0;
153
+ list-style: none;
154
+ }
155
+
156
+ .rtl .vfb-button-group {
157
+ margin-left: -2px;
158
+ }
159
+
160
+ .vfb-button-group .vfb-button {
161
+ float: left;
162
+ margin-right: 5px;
163
+ }
164
+
165
+ .rtl .vfb-button-group .vfb-button {
166
+ float: right;
167
+ margin-right: 0;
168
+ margin-left: 5px;
169
+ }
170
+
171
+ .vfb-button-group .button-primary {
172
+ margin-top: 2px;
173
+ }
174
+
175
+ .vfb-item-actions {
176
+ margin-right: 10px;
177
+ margin-bottom: 10px;
178
+ text-align: center;
179
+ }
180
+
181
+ .rtl .vfb-item-actions {
182
+ margin-right: 0;
183
+ margin-left: 10px;
184
+ }
185
+
186
+ .vfb-item-actions .vfb-delete {
187
+ float: left;
188
+ }
189
+
190
+ .rtl .vfb-item-actions .vfb-delete {
191
+ float: right;
192
+ }
193
+
194
+ .vfb-item-actions .vfb-conditional-fields {
195
+ float: right;
196
+ }
197
+
198
+ .rtl .vfb-item-actions .vfb-conditional-fields {
199
+ float: left;
200
+ }
201
+
202
+ .vfb-item-actions .vfb-delete,
203
+ .vfb-item-actions .vfb-duplicate,
204
+ .vfb-item-actions .vfb-conditional-fields {
205
+ margin-top: 10px;
206
+ }
admin/assets/css/sass/partials/_confirmation.scss ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #form-details-nav {
2
+ font-size: 1.0em;
3
+ padding-top: 10px;
4
+ }
5
+ #form-details-nav a,
6
+ .charts-nav a {
7
+ font-weight: bold;
8
+ padding: 5px 10px;
9
+ text-decoration: none;
10
+ }
11
+
12
+ #form-details-nav a.current,
13
+ .charts-nav a.current {
14
+ height: 40px;
15
+ color: white;
16
+ border-color: #dfdfdf;
17
+ border-radius: 5px;
18
+ background-image: linear-gradient(bottom, #6d6d6d, #808080);
19
+ background-color: #777777;
20
+ text-shadow: 0 -1px 0 #333333;
21
+ }
22
+
23
+ /* !Form Settings - Confirmation */
24
+ .form-details,
25
+ #form-success-message-text,
26
+ #form-success-message-page,
27
+ #form-success-message-redirect {
28
+ display: none;
29
+ }
30
+
31
+ .form-details-current,
32
+ .active {
33
+ display: block;
34
+ }
35
+
36
+ #confirmation-message textarea,
37
+ #notification textarea {
38
+ font-family: Consolas,Monaco,monospace;
39
+ width: 100%;
40
+ height: 10em;
41
+ }
42
+
43
+ #form-success-message-page,
44
+ #form-success-message-redirect {
45
+ width: 100%;
46
+ margin-top: 10px;
47
+ }
48
+
49
+ .post-body-plain ol li {
50
+ list-style: decimal;
51
+ }
admin/assets/css/sass/partials/_cta.scss ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .vfb-pro-call-to-action {
2
+ padding: 5px 0;
3
+ text-align: center;
4
+
5
+ .cta-sign-up {
6
+ font-size: 24px;
7
+ font-weight: bold;
8
+ line-height: 22px;
9
+ display: block;
10
+ width: 100%;
11
+ text-align: center;
12
+ text-decoration: none;
13
+ color: #ffffff;
14
+ text-shadow: 1px 1px 1px #2b658c;
15
+ }
16
+
17
+ .cta-price {
18
+ font-size: 12px;
19
+ font-weight: normal;
20
+ line-height: 20px;
21
+ line-height: 20px;
22
+ display: block;
23
+ width: 100%;
24
+ text-align: center;
25
+ text-decoration: none;
26
+ color: #ace7ff;
27
+ }
28
+ }
admin/assets/css/sass/partials/_entries.scss ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .vfb-meta-entries-total span,
2
+ .vfb-meta-entries-total-today span {
3
+ font-size: 11px;
4
+ font-weight: bold;
5
+ line-height: 1.4em;
6
+ display: inline-block;
7
+ min-width: 0.7em;
8
+ height: 1.4em;
9
+ padding: 0 6px;
10
+ text-align: center;
11
+ color: white;
12
+ border-radius: 5px;
13
+ background-color: #bbbbbb;
14
+ }
15
+
16
+ .vfb-meta-entries-total:hover span,
17
+ .vfb-meta-entries-total-today:hover span {
18
+ background-color: #d54e21;
19
+ }
20
+ .fixed .column-entries,
21
+ .fixed .column-form_id {
22
+ width: 8em;
23
+ }
24
+
25
+ strong .vfb-meta-entries-total span {
26
+ background-color: #21759b;
27
+ }
28
+
29
+ .entries-count-wrapper {
30
+ font-family: sans-serif;
31
+ min-width: 22px;
32
+ padding-bottom: 1px;
33
+ }
34
+
35
+ #vfb-poststuff {
36
+ display: block;
37
+ margin-right: 300px;
38
+ }
39
+
40
+ .rtl #vfb-poststuff {
41
+ margin-right: 0;
42
+ margin-left: 300px;
43
+ }
44
+
45
+ #vfb-entries-body-content {
46
+ float: left;
47
+ width: 100%;
48
+ }
49
+
50
+ .rtl #vfb-entries-body-content {
51
+ float: right;
52
+ }
53
+
54
+ .metabox-holder #vfb-entries-body-content h3 {
55
+ font-family: sans-serif;
56
+ font-weight: bold;
57
+ }
58
+
59
+ #entry-edit #side-info-column {
60
+ margin-right: -300px;
61
+ }
62
+
63
+ .rtl #entry-edit #side-info-column {
64
+ margin-right: 0;
65
+ margin-left: -300px;
66
+ }
admin/assets/css/sass/partials/_export.scss ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* !Import/Export */
2
+ .vfb-export-label {
3
+ float: left;
4
+ width: 10em;
5
+ }
6
+
7
+ .rtl .vfb-export-label {
8
+ float: right;
9
+ }
10
+
11
+ #vfb-export-entries-fields {
12
+ display: block;
13
+ overflow: auto;
14
+ width: 300px;
15
+ height: 275px;
16
+ margin-left: 10em;
17
+ padding: 5px;
18
+ border: 1px solid #e8e8e8;
19
+ border-radius: 3px;
20
+ background: white;
21
+ }
22
+
23
+ #vfb-export-select-all,
24
+ #vfb-export-unselect-all {
25
+ display: inline-block;
26
+ width: 150px;
27
+ text-align: left;
28
+ }
29
+
30
+ #vfb-export-unselect-all {
31
+ margin-left: 5px;
32
+ text-align: right;
33
+ }
admin/assets/css/sass/partials/_fields.scss ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* !Field Item arrows */
2
+ .item-edit {
3
+ position: absolute;
4
+ top: 3px;
5
+ right: -20px;
6
+ display: block;
7
+ overflow: hidden;
8
+ width: 30px;
9
+ height: 40px;
10
+ text-indent: -999em;
11
+ background: url('../img/arrows.png?d=20130703') no-repeat scroll 8px 10px transparent;
12
+ }
13
+
14
+ /* Blue Admin style */
15
+ .admin-color-classic .item-edit {
16
+ background: url('../img/arrows-vs.png?d=20130703') no-repeat scroll 8px 10px transparent;
17
+ }
18
+
19
+ .rtl .item-edit {
20
+ right: auto;
21
+ left: -20px;
22
+ }
23
+
24
+ .item-edit:hover {
25
+ background: url('../img/arrows-dark.png?d=20130703') no-repeat scroll 8px 10px transparent;
26
+ }
27
+
28
+ /* Blue Admin style */
29
+ .admin-color-classic .item-edit:hover {
30
+ background: url('../img/arrows-dark-vs.png?d=20130703') no-repeat scroll 8px 10px transparent;
31
+ }
32
+
33
+ .item-edit.opened {
34
+ background: url('../img/arrows.png?d=20130703') no-repeat scroll 8px -25px transparent;
35
+ }
36
+
37
+ /* Blue Admin style */
38
+ .admin-color-classic .item-edit.opened {
39
+ background: url('../img/arrows-vs.png?d=20130703') no-repeat scroll 8px -25px transparent;
40
+ }
41
+
42
+ .item-edit.opened:hover {
43
+ background: url('../img/arrows-dark.png?d=20130703') no-repeat scroll 8px -25px transparent;
44
+ }
45
+
46
+ /* Blue Admin style */
47
+ .admin-color-classic .item-edit.opened:hover {
48
+ background: url('../img/arrows-dark-vs.png?d=20130703') no-repeat scroll 8px -25px transparent;
49
+ }
50
+
51
+ /* !Field Item attribute input styles */
52
+ .option .widefat,
53
+ .options-other-show .widefat,
54
+ .options-other-hide .widefat {
55
+ width: 320px;
56
+ margin: 0 6px 7px 0;
57
+ }
58
+
59
+ .rtl .option .widefat,
60
+ .rtl .options-other-show .widefat,
61
+ .rtl .options-other-hide .widefat {
62
+ margin: 0 0 7px 6px;
63
+ }
64
+
65
+ #form-settings .description-thin {
66
+ margin: 12px 10px 12px 0;
67
+ }
68
+
69
+ .rtl #form-settings .description-thin {
70
+ margin: 12px 0 12px 10px;
71
+ }
72
+
73
+ .description-thin,
74
+ .description-wide {
75
+ float: left;
76
+ margin-right: 10px;
77
+ }
78
+
79
+ .rtl .description-thin,
80
+ .rtl .description-wide {
81
+ float: right;
82
+ margin-right: 0;
83
+ margin-left: 10px;
84
+ }
85
+
86
+ .description-thin {
87
+ width: 190px;
88
+ height: 40px;
89
+ }
90
+
91
+ .description-wide {
92
+ width: 390px;
93
+ }
94
+
95
+ #vfb-menu-to-edit .menu-item-settings {
96
+ width: 402px;
97
+ }
98
+
99
+ .vfb-menu-item-handle {
100
+ line-height: 35px;
101
+ position: relative;
102
+ overflow: hidden;
103
+ width: 382px;
104
+ height: auto;
105
+ padding: 10px 15px;
106
+ cursor: move;
107
+ word-wrap: break-word;
108
+ border: 1px solid #dfdfdf;
109
+ border-radius: 3px;
110
+ background: white;
111
+ text-shadow: 0 1px 0 #ffffff;
112
+ }
113
+
114
+ .vfb-menu-item-handle:hover {
115
+ border-color: #999999;
116
+ }
117
+
118
+ /* Blue Admin style */
119
+ .admin-color-classic .vfb-menu-item-handle {
120
+ border-color: #d0dfe9;
121
+ background: #f5fafd;
122
+ box-shadow: 0 1px 0 #ffffff inset;
123
+ }
124
+
125
+ .rtl .vfb-menu-item-handle {
126
+ padding-right: 10px;
127
+ padding-left: 0;
128
+ }
129
+
130
+ .vfb-menu-item-type-fieldset,
131
+ .vfb-menu-item-type-verification,
132
+ #form-element-fieldset {
133
+ background: #e3e3e3;
134
+ box-shadow: 0 1px 0 #e3e3e3 inset;
135
+ }
136
+
137
+ /* Blue Admin style */
138
+ .admin-color-classic .vfb-menu-item-type-fieldset,
139
+ .admin-color-classic .vfb-menu-item-type-verification,
140
+ .admin-color-classic #form-element-fieldset {
141
+ background: #e2f3ff;
142
+ box-shadow: 0 1px 0 #ffffff inset;
143
+ }
144
+
145
+ .vfb-menu-item-handle .item-title {
146
+ font-size: 12px;
147
+ font-weight: bold;
148
+ line-height: 20px;
149
+ display: block;
150
+ min-height: 20px;
151
+ margin-right: 13em;
152
+ }
153
+
154
+ .rtl .vfb-menu-item-handle .item-title {
155
+ margin-right: 0;
156
+ margin-left: 13em;
157
+ }
158
+
159
+ .vfb-menu-item-active .vfb-menu-item-handle {
160
+ border-bottom-right-radius: 0;
161
+ border-bottom-left-radius: 0;
162
+ }
163
+
164
+ .sender-labels {
165
+ width: 80px;
166
+ }
167
+
168
+ .is-field-required {
169
+ color: #bc1212;
170
+ }
171
+
172
+ .menu .ui-nestedSortable-error {
173
+ color: #8a1f11;
174
+ border-color: red;
175
+ background-color: #fbe3e4;
176
+ }
177
+
178
+ ul#vfb-menu-to-edit ul {
179
+ width: 98%;
180
+ margin: 0 0 0 25px;
181
+ padding: 0;
182
+ list-style-type: none;
183
+ }
184
+ #vfb-menu-to-edit {
185
+ margin-top: 0;
186
+ padding: 1em 0;
187
+ }
188
+
189
+ #vfb-fieldset-first-warning {
190
+ display: none;
191
+ }
192
+
193
+ .ui-state-disabled,
194
+ .ui-state-disabled dl,
195
+ .ui-state-disabled dt,
196
+ .form-item.ui-state-disabled {
197
+ opacity: 100;
198
+ background-image: none;
199
+ }
200
+
201
+ .ui-state-disabled .vfb-menu-item-handle,
202
+ .ui-state-disabled .menu-item-handle {
203
+ cursor: default;
204
+ background: #dfdfdf;
205
+ box-shadow: none;
206
+ }
207
+
208
+ .vfb-details {
209
+ margin-bottom: 10px;
210
+ padding: 0 10px;
211
+ border: 1px solid #cccccc;
212
+ border-radius: 3px;
213
+ }
214
+
215
+ .vfb-details.section {
216
+ width: 97.55%;
217
+ background-color: #efefef;
218
+ }
219
+
220
+ .vfb-details .postbox {
221
+ min-height: 60px;
222
+ }
223
+
224
+ #poststuff .vfb-details h2 {
225
+ margin-top: 0;
226
+ }
227
+
228
+ #poststuff h3.section-heading {
229
+ padding-left: 0;
230
+ }
231
+
232
+ /* !Form Items */
233
+ #form-items .tabs-panel {
234
+ overflow: visible;
235
+ height: auto;
236
+ min-height: 325px;
237
+ padding: 0.5em 0 0.5em 4px;
238
+ }
239
+
240
+ .rtl #form-items .tabs-panel {
241
+ padding: 0.5em 4px 0.5em 0;
242
+ }
243
+
244
+ ul.vfb-fields-col-1,
245
+ ul.vfb-fields-col-2 {
246
+ float: left;
247
+ width: 50%;
248
+ list-style: none;
249
+ }
250
+
251
+ .rtl ul.vfb-fields-col-1,
252
+ .rtl ul.vfb-fields-col-2 {
253
+ float: right;
254
+ }
255
+
256
+ #vfb-form-builder-frame.columns-1 #vfb-postbox-container-1 #form-items .tabs-panel {
257
+ height: auto;
258
+ }
259
+
260
+ .static-vars-inactive {
261
+ display: none;
262
+ }
263
+
264
+ .static-vars-active {
265
+ display: block;
266
+ }
267
+
268
+ /* !Bulk Add Options */
269
+ .vfb-add-options-group {
270
+ display: inline-block;
271
+ width: 95%;
272
+ margin: 10px 0;
273
+ list-style: none;
274
+ text-align: center;
275
+
276
+ .vfb-interface-plus {
277
+ top: 4px;
278
+ }
279
+ }
admin/assets/css/sass/partials/_form-edit.scss ADDED
@@ -0,0 +1,365 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* !Form View framework */
2
+ #vfb-form-builder-frame {
3
+ display: block;
4
+ margin: 0 -8px 0 290px;
5
+ }
6
+
7
+ .rtl #vfb-form-builder-frame {
8
+ margin: 0 290px 0 -8px;
9
+ }
10
+
11
+ #vfb-form-builder-frame:after,
12
+ #form-editor-header .vfb-major-publishing-actions:after,
13
+ #form-editor-footer .vfb-major-publishing-actions:after,
14
+ #vfb-form-builder-frame .menu-item-settings:after,
15
+ #vfb-form-list:after,
16
+ .option:after {
17
+ display: block;
18
+ visibility: hidden;
19
+ clear: both;
20
+ height: 0;
21
+ content: '.';
22
+ }
23
+
24
+ #vfb-form-builder-sidebar {
25
+ clear: both;
26
+ width: 281px;
27
+ }
28
+
29
+ #vfb-form-builder-management {
30
+ position: relative;
31
+ margin-right: 10px;
32
+ }
33
+
34
+ .rtl #vfb-form-builder-management {
35
+ margin-right: 0;
36
+ margin-left: 10px;
37
+ }
38
+
39
+ #vfb-form-builder-management .form-edit {
40
+ margin-bottom: 20px;
41
+ border: 1px solid #dfdfdf;
42
+ border-radius: 3px;
43
+ }
44
+
45
+ /* Blue Admin style */
46
+ .admin-color-classic #vfb-form-builder-management .form-edit {
47
+ border-color: #d0dfe9;
48
+ }
49
+
50
+ /* !Form Editor Header/Footer */
51
+ #form-editor-header,
52
+ #form-editor-footer {
53
+ padding: 0 10px;
54
+ background-color: #f1f1f1;
55
+ }
56
+
57
+ #form-editor-footer {
58
+ border-top: 1px solid #dfdfdf;
59
+ }
60
+
61
+ /* Blue Admin style */
62
+ .admin-color-classic #form-editor-header,
63
+ .admin-color-classic #form-editor-footer {
64
+ background-color: #f5fafd;
65
+ }
66
+
67
+ .admin-color-class #form-editor-footer {
68
+ border-top-color: #d0dfe9;
69
+ }
70
+
71
+ .vfb-major-publishing-actions {
72
+ clear: both;
73
+ padding: 3px 0 5px;
74
+ }
75
+
76
+ .vfb-major-publishing-actions .publishing-action {
77
+ line-height: 23px;
78
+ float: right;
79
+ margin: 5px 0 1px;
80
+ text-align: right;
81
+ }
82
+
83
+ #form-editor-header .publishing-action {
84
+ margin-top: 12px;
85
+ }
86
+
87
+ /* Form Box view */
88
+ #vfb-sidebar,
89
+ #vfb-main {
90
+ float: left;
91
+ width: 280px;
92
+ margin: 10px 0;
93
+ }
94
+
95
+ .rtl #vfb-sidebar,
96
+ .rtl #vfb-main {
97
+ float: right;
98
+ }
99
+
100
+ #vfb-main {
101
+ width: auto;
102
+ }
103
+ #vfb-main.vfb-order-type-list {
104
+ width: 100%;
105
+ }
106
+
107
+ #vfb-main p a,
108
+ #vfb-main h3 a {
109
+ text-decoration: none;
110
+ }
111
+
112
+ #vfb-main .submitdelete {
113
+ text-decoration: none;
114
+ color: #bc0b0b;
115
+ }
116
+ #vfb-main .submitdelete:hover {
117
+ color: red;
118
+ }
119
+
120
+ #vfb-sidebar {
121
+ margin-left: -300px;
122
+ }
123
+
124
+ .rtl #vfb-sidebar {
125
+ margin-right: -300px;
126
+ margin-left: 0;
127
+ }
128
+
129
+ #vfb-form-list {
130
+ display: block;
131
+ margin-left: 300px;
132
+ }
133
+
134
+ .rtl #vfb-form-list {
135
+ margin-right: 300px;
136
+ margin-left: 0;
137
+ }
138
+
139
+ /* !Form Boxes */
140
+ .vfb-box {
141
+ line-height: 1.4em;
142
+ position: relative;
143
+ float: left;
144
+ padding: 0 10px;
145
+ border: 1px solid #dfdfdf;
146
+ border-radius: 3px 3px 3px 3px;
147
+ background: linear-gradient(to bottom, #ffffff 0%,#f5f5f5 100%);
148
+ background-color: #f5f5f5;
149
+ box-shadow: 0 1px 0 #ffffff inset;
150
+ }
151
+
152
+ .vfb-form-alpha-list {
153
+ float: left;
154
+ width: 70%;
155
+ padding-right: 20px;
156
+ }
157
+
158
+ .rtl .vfb-form-alpha-list {
159
+ float: right;
160
+ padding-right: 0;
161
+ padding-left: 20px;
162
+ }
163
+
164
+ .vfb-form-alpha-list hr {
165
+ display: block;
166
+ height: 1px;
167
+ margin: 1em 0;
168
+ padding: 0;
169
+ border: 0;
170
+ border-top: 1px solid #cccccc;
171
+ }
172
+
173
+ .vfb-form-alpha-group .letter,
174
+ .wrap h2.letter {
175
+ font-size: 14px;
176
+ line-height: 17px;
177
+ float: left;
178
+ padding: 0;
179
+ color: #666666;
180
+ }
181
+
182
+ .vfb-form-alpha-form {
183
+ display: block;
184
+ width: auto;
185
+ margin: 10px 0;
186
+ padding-left: 150px;
187
+ }
188
+ .vfb-form-alpha-form h3 {
189
+ font-size: 17px;
190
+ float: left;
191
+ width: 50%;
192
+ margin: 0;
193
+ word-wrap: break-word;
194
+ }
195
+
196
+ .vfb-form-alpha-form .vfb-publishing-actions,
197
+ .vfb-form-alpha-form .vfb-form-meta {
198
+ float: left;
199
+ width: 20%;
200
+ text-align: center;
201
+ }
202
+
203
+ .vfb-form-alpha-form .vfb-form-meta {
204
+ width: 30%;
205
+ }
206
+
207
+ .vfb-form-alpha-form .vfb-publishing-actions p,
208
+ .vfb-form-alpha-form .vfb-form-meta p {
209
+ margin: 0;
210
+ }
211
+
212
+ .vfb-form-alpha-form .vfb-form-meta,
213
+ .vfb-form-alpha-form .paypal {
214
+ float: left;
215
+ margin: 0;
216
+ text-align: left;
217
+ }
218
+
219
+ .rtl .vfb-form-alpha-form .vfb-form-meta,
220
+ .rtl .vfb-form-alpha-form .paypal {
221
+ float: right;
222
+ text-align: right;
223
+ }
224
+
225
+ .vfb-sortable-placeholder {
226
+ display: block;
227
+ width: 400px;
228
+ height: 35px;
229
+ margin: 8px;
230
+ border: 1px dashed #bbbbbb;
231
+ background-color: #f5f5f5;
232
+ }
233
+
234
+ #vfb-main .vfb-sortable-placeholder {
235
+ float: left;
236
+ width: 210px;
237
+ height: 200px;
238
+ margin: 8px;
239
+ }
240
+
241
+ .rtl #vfb-main .vfb-sortable-placeholder {
242
+ float: right;
243
+ }
244
+
245
+ #vfb-menu-to-edit .mjs-nestedSortable-error {
246
+ color: #8a1f11;
247
+ border-color: red;
248
+ background-color: #fbe3e4;
249
+ }
250
+
251
+ /* !Form Editor columns */
252
+ .vfb-postbox-container {
253
+ float: left;
254
+ width: 100%;
255
+ margin: 0 8px;
256
+ }
257
+
258
+ .rtl .vfb-postbox-container {
259
+ float: right;
260
+ }
261
+
262
+ #vfb-postbox-container-1 .postbox {
263
+ min-width: 281px;
264
+ }
265
+
266
+ #vfb-postbox-container-2 {
267
+ min-width: 485px;
268
+ }
269
+
270
+ #vfb-form-builder-frame.columns-1 {
271
+ margin-left: -8px;
272
+ }
273
+
274
+ .rtl #vfb-form-builder-frame.columns-1 {
275
+ margin-right: -8px;
276
+ margin-left: 0;
277
+ }
278
+
279
+ #vfb-form-builder-frame.columns-1 #vfb-postbox-container-1 {
280
+ float: none;
281
+ }
282
+
283
+ #vfb-form-builder-frame.columns-1 #vfb-postbox-container-2 {
284
+ width: 99%;
285
+ }
286
+
287
+ #vfb-form-builder-frame.columns-2 #vfb-postbox-container-3 {
288
+ display: none;
289
+ }
290
+
291
+ #vfb-form-builder-frame.columns-2 #vfb-postbox-container-1,
292
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-1 {
293
+ width: 281px;
294
+ margin-left: -290px;
295
+ }
296
+
297
+ .rtl #vfb-form-builder-frame.columns-2 #vfb-postbox-container-1,
298
+ .rtl #vfb-form-builder-frame.columns-3 #vfb-postbox-container-1 {
299
+ margin-right: -290px;
300
+ margin-left: 0;
301
+ }
302
+
303
+ #vfb-form-builder-frame.columns-3 #vfb-form-builder-management {
304
+ margin-right: 0;
305
+ }
306
+
307
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-2 {
308
+ width: 30%;
309
+ }
310
+
311
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3 {
312
+ display: inline;
313
+ width: 46.5%;
314
+ margin-right: 0;
315
+ }
316
+
317
+ .rtl #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3 {
318
+ margin-right: 0;
319
+ margin-left: 0;
320
+ }
321
+
322
+ #vfb-form-meta-preview iframe {
323
+ width: 100%;
324
+ height: 100%;
325
+ }
326
+
327
+ #vfb_form_media_button_tip input {
328
+ font-family: Consolas, Monaco, monospace;
329
+ font-size: 12px;
330
+ width: 100%;
331
+ padding: 6px;
332
+ border: 0;
333
+ }
334
+
335
+ /* !Form Editor Columns - One Column */
336
+ @media only screen and (max-width: 799px) {
337
+ #vfb-form-builder-frame .vfb-postbox-container {
338
+ width: 100%;
339
+ }
340
+ .columns-prefs .columns-prefs-3 {
341
+ display: none;
342
+ }
343
+ }
344
+
345
+ /* !Form Editor Columns - Two Columns */
346
+ @media only screen and (min-width: 800px) and (max-width: 1200px) {
347
+ #vfb-form-builder-frame .vfb-postbox-container {
348
+ width: 49.5%;
349
+ }
350
+
351
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-2,
352
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3 {
353
+ width: 50.5%;
354
+ }
355
+
356
+ #vfb-form-builder-frame.columns-1 .vfb-postbox-container {
357
+ width: 100%;
358
+ }
359
+ }
360
+ /* !Form Editor Columns - Three Columns */
361
+ @media only screen and (min-width: 1600px) {
362
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3 {
363
+ width: 58%;
364
+ }
365
+ }
admin/assets/css/sass/partials/_form-new.scss ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* !New Form box */
2
+ #new-form {
3
+ width: 75px;
4
+ height: 105px;
5
+ margin: 8px 0;
6
+ padding-top: 10px;
7
+ text-align: center;
8
+ }
9
+ #new-form a {
10
+ display: block;
11
+ width: auto;
12
+ text-decoration: none;
13
+ }
14
+
15
+ #post-body {
16
+ padding: 10px;
17
+ background: white;
18
+ }
admin/assets/css/sass/partials/_form-settings.scss ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #form-settings
2
+ {
3
+ display: none;
4
+
5
+ width: 100%;
6
+ max-width: 460px;
7
+ margin-bottom: 15px;
8
+
9
+ border-bottom: 1px solid #d6d6d6;
10
+ }
11
+
12
+ #form-settings.current
13
+ {
14
+ display: block;
15
+ }
16
+
17
+ .form-details
18
+ {
19
+ padding: 20px;
20
+
21
+ border-right: 1px solid #d6d6d6;
22
+ border-left: 1px solid #d6d6d6;
23
+ background: rgb( 255, 255, 255 );
24
+ background: rgba(255, 255, 255, .5);
25
+ }
26
+
27
+ .form-details.on
28
+ {
29
+ display: block;
30
+ }
31
+
32
+ .settings-links
33
+ {
34
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
35
+ font-size: 15px;
36
+ font-weight: normal;
37
+ line-height: 25px;
38
+
39
+ position: relative;
40
+ z-index: 1;
41
+
42
+ display: block;
43
+
44
+ height: 25px;
45
+ padding: 5px 15px;
46
+
47
+ cursor: pointer;
48
+ text-decoration: none;
49
+ text-transform: uppercase;
50
+
51
+ color: #333;
52
+ border-top: 1px solid #ccc;
53
+ border-right: 1px solid #ccc;
54
+ border-left: 1px solid #ccc;
55
+ background: #f5f5f5;
56
+ text-shadow: 0 1px 0 #fff;
57
+ }
58
+
59
+ .settings-links .vfb-large-arrow
60
+ {
61
+ position: absolute;
62
+ z-index: 1;
63
+ top: 16px;
64
+ right: 25px;
65
+
66
+ width: 5px;
67
+ height: 0;
68
+ }
69
+
70
+ .settings-links .vfb-large-arrow:after
71
+ {
72
+ position: absolute;
73
+ z-index: 1;
74
+
75
+ width: 0;
76
+ height: 0;
77
+
78
+ content: '';
79
+
80
+ border-width: 6px 6px 0;
81
+ border-style: solid;
82
+ border-color: #ccc transparent;
83
+ }
84
+
85
+ .rtl .settings-links .vfb-large-arrow
86
+ {
87
+ right: auto;
88
+ left: 13px;
89
+ }
90
+
91
+ .settings-links.on
92
+ {
93
+ border-bottom: 1px solid #808080;
94
+ }
95
+
96
+ .settings-links:hover,
97
+ .settings-links.on
98
+ {
99
+ color: #fff;
100
+ background: #808080;
101
+ text-shadow: 0 -1px 0 #333;
102
+ }
103
+
104
+ .settings-links:first-child
105
+ {
106
+ border-top-left-radius: 3px;
107
+ border-top-right-radius: 3px;
108
+ }
admin/assets/css/sass/partials/_icons.scss ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Interface icons */
2
+ .vfb-interface-icon {
3
+ position: absolute;
4
+ top: 4px;
5
+ right: 4px;
6
+ display: inline-block;
7
+ width: 16px;
8
+ height: 16px;
9
+ text-indent: -9999px;
10
+ background-image: url('../img/vfb-interface-icons.png?d=20130713');
11
+ background-color: transparent;
12
+ background-repeat: no-repeat;
13
+ }
14
+
15
+ .vfb-interface-settings {
16
+ background-position: -32px 0;
17
+ }
18
+ .vfb-interface-duplicate {
19
+ background-position: 0 0;
20
+ }
21
+ .vfb-interface-trash {
22
+ background-position: -64px 0;
23
+ }
24
+ .vfb-interface-conditional {
25
+ background-position: -224px 0;
26
+ }
27
+ .vfb-interface-sort {
28
+ background-position: -128px 0;
29
+ }
30
+ .vfb-interface-plus {
31
+ background-position: -160px 0;
32
+ }
33
+ .vfb-interface-minus {
34
+ background-position: -192px 0;
35
+ }
36
+ .vfb-interface-bulk-add {
37
+ background-position: -96px 0;
38
+ }
39
+
40
+ .vfb-interface-plus,
41
+ .vfb-interface-minus {
42
+ top: 0;
43
+ }
44
+
45
+ /* Form Settings add/delete emails */
46
+ .addEmail,
47
+ .deleteEmail {
48
+ top: 28px;
49
+ }
50
+ .addEmail {
51
+ right: 55px;
52
+ }
53
+
54
+ .rtl .addEmail {
55
+ right: auto;
56
+ left: 55px;
57
+ }
58
+
59
+ .deleteEmail {
60
+ right: 30px;
61
+ }
62
+
63
+ .rtl .deleteEmail {
64
+ right: auto;
65
+ left: 30px;
66
+ }
67
+
68
+ /* Form item delete/sort options */
69
+ .deleteOption,
70
+ .vfb-interface-sort,
71
+ .addCondition,
72
+ .deleteCondition {
73
+ top: 3px;
74
+ }
75
+
76
+ .deleteOption,
77
+ .addCondition {
78
+ right: 25px;
79
+ }
80
+
81
+ .rtl .deleteOption,
82
+ .rtl .addCondition {
83
+ right: auto;
84
+ left: 25px;
85
+ }
86
+
87
+ .vfb-interface-sort,
88
+ .deleteCondition {
89
+ right: 0;
90
+ }
91
+
92
+ .rtl .vfb-interface-sort,
93
+ .rtl .deleteCondition {
94
+ right: auto;
95
+ left: 0;
96
+ }
97
+
98
+ .vfb-interface-sort:hover {
99
+ cursor: pointer;
100
+ }
101
+
102
+ .option {
103
+ position: relative;
104
+ float: left;
105
+ width: 97%;
106
+ }
107
+
108
+ .rtl .option {
109
+ float: right;
110
+ }
111
+
112
+ .vfb-draggable-form-items {
113
+ font-size: 12px;
114
+ position: relative;
115
+ position: relative;
116
+ display: block;
117
+ margin-right: 8px;
118
+ padding: 4px 0 4px 34px;
119
+ text-align: left;
120
+ text-decoration: none;
121
+ color: #464646;
122
+ border: 1px solid #bbbbbb;
123
+ border-radius: 3px;
124
+ }
125
+
126
+ .rtl .vfb-draggable-form-items {
127
+ margin-right: 0;
128
+ margin-left: 8px;
129
+ padding: 4px 34px 4px 10px;
130
+ }
131
+
132
+ .vfb-draggable-form-items:hover {
133
+ border-color: #aaaaaa;
134
+ }
135
+
136
+ .vfb-draggable-form-items b {
137
+ line-height: 16px;
138
+ position: absolute;
139
+ left: 8px;
140
+ display: inline-block;
141
+ width: 16px;
142
+ height: 16px;
143
+ background-image: url('../img/vfb-form-items.png?d=20130712');
144
+ background-color: transparent;
145
+ background-repeat: no-repeat;
146
+ }
147
+
148
+ .rtl .vfb-draggable-form-items b {
149
+ right: 8px;
150
+ left: auto;
151
+ }
152
+
153
+ #form-element-address b {
154
+ background-position: -128px 0;
155
+ }
156
+ #form-element-autocomplete b {
157
+ background-position: -384px 0;
158
+ }
159
+ #form-element-checkbox b {
160
+ background-position: -672px 0;
161
+ }
162
+ #form-element-color b {
163
+ background-position: 0 0;
164
+ }
165
+ #form-element-currency b {
166
+ background-position: -64px 0;
167
+ }
168
+ #form-element-datepicker b {
169
+ background-position: -224px 0;
170
+ }
171
+ #form-element-digits b {
172
+ background-position: -832px 0;
173
+ }
174
+ #form-element-email b {
175
+ background-position: -160px 0;
176
+ }
177
+ #form-element-file b {
178
+ background-position: -512px 0;
179
+ }
180
+ #form-element-hidden b {
181
+ background-position: -544px 0;
182
+ }
183
+ #form-element-html b {
184
+ background-position: -800px 0;
185
+ }
186
+ #form-element-instructions b {
187
+ background-position: -256px 0;
188
+ }
189
+ #form-element-ip b {
190
+ background-position: -448px 0;
191
+ }
192
+ #form-element-max b {
193
+ background-position: -576px 0;
194
+ }
195
+ #form-element-min b {
196
+ background-position: -608px 0;
197
+ }
198
+ #form-element-name b {
199
+ background-position: -320px 0;
200
+ }
201
+ #form-element-pagebreak b {
202
+ background-position: -768px 0;
203
+ }
204
+ #form-element-password b {
205
+ background-position: -352px 0;
206
+ }
207
+ #form-element-phone b {
208
+ background-position: -96px 0;
209
+ }
210
+ #form-element-radio b {
211
+ background-position: -704px 0;
212
+ }
213
+ #form-element-range b {
214
+ background-position: -640px 0;
215
+ }
216
+ #form-element-select b {
217
+ background-position: -416px 0;
218
+ }
219
+ #form-element-text b {
220
+ background-position: -736px 0;
221
+ }
222
+ #form-element-textarea b {
223
+ background-position: -32px 0;
224
+ }
225
+ #form-element-time b {
226
+ background-position: -192px 0;
227
+ }
228
+ #form-element-username b {
229
+ background-position: -288px 0;
230
+ }
231
+ #form-element-url b {
232
+ background-position: -480px 0;
233
+ }
admin/assets/css/sass/partials/_notices.scss ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .vfb-notices {
2
+ margin-top: 10px;
3
+ margin-bottom: 20px;
4
+ padding: 15px;
5
+ border: 1px solid transparent;
6
+ border-radius: 4px;
7
+ }
8
+ .vfb-notices.vfb-notice-success {
9
+ color: #3c763d;
10
+ border-color: #d6e9c6;
11
+ background-color: #dff0d8;
12
+ }
13
+
14
+ .vfb-notices.vfb-notice-info {
15
+ color: #31708f;
16
+ border-color: #bce8f1;
17
+ background-color: #d9edf7;
18
+ }
19
+
20
+ .vfb-notices.vfb-notice-warning {
21
+ color: #8a6d3b;
22
+ border-color: #faebcc;
23
+ background-color: #fcf8e3;
24
+ }
25
+
26
+ .vfb-notices.vfb-notice-danger {
27
+ color: #a94442;
28
+ border-color: #ebccd1;
29
+ background-color: #f2dede;
30
+ }
31
+
32
+ .vfb-notices h3 {
33
+ margin-top: 0;
34
+ color: inherit;
35
+ }
admin/assets/css/sass/partials/_print.scss ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @media print {
2
+ body * {
3
+ float: none;
4
+ }
5
+
6
+ html,
7
+ .wrap,
8
+ #wpbody-content,
9
+ #vfb-poststuff {
10
+ height: auto;
11
+ margin: 0;
12
+ padding: 0;
13
+ background: none !important;
14
+ }
15
+
16
+ #wpadminbar,
17
+ #adminmenuwrap,
18
+ #adminmenushadow,
19
+ #adminmenuback,
20
+ .screen-reader-shortcut,
21
+ #screen-meta,
22
+ #screen-meta-links,
23
+ #wpfooter,
24
+ #icon-options-general,
25
+ .wrap h2,
26
+ .view-entry,
27
+ #major-publishing-actions,
28
+ .clear {
29
+ display: none;
30
+ }
31
+
32
+ #wpcontent,
33
+ body #wpcontent {
34
+ width: auto;
35
+ height: auto;
36
+ margin-left: 0;
37
+ }
38
+
39
+ #entry-edit h3 span {
40
+ font-size: 23px;
41
+ font-weight: normal;
42
+ }
43
+
44
+ #vfb-poststuff {
45
+ page-break-after: auto;
46
+ }
47
+
48
+ #vfb-entries-body-content {
49
+ width: 100%;
50
+ height: auto;
51
+ margin: 0 0 50px 0;
52
+ padding: 0;
53
+ }
54
+
55
+ #side-info-column {
56
+ float: none;
57
+ width: 100%;
58
+ height: auto;
59
+ }
60
+
61
+ #side-info-column .postbox .inside {
62
+ margin: 0;
63
+ padding: 0;
64
+ }
65
+
66
+ #minor-publishing,
67
+ .misc-pub-section,
68
+ #submitdiv,
69
+ #submitdiv h3 {
70
+ margin: 0;
71
+ border: none;
72
+ background: none !important;
73
+ }
74
+
75
+ #submitdiv h3 span {
76
+ font-family: sans-serif;
77
+ font-size: 16px;
78
+ }
79
+
80
+ .inner-sidebar #side-sortables,
81
+ .columns-2 .inner-sidebar #side-sortables {
82
+ width: auto;
83
+ margin: 0;
84
+ padding: 0;
85
+ }
86
+
87
+ table {
88
+ page-break-inside: auto;
89
+ }
90
+
91
+ tr textarea {
92
+ overflow: visible;
93
+ }
94
+ }
95
+
96
+ /* !HiDPI Displays */
97
+ @media print,
98
+ (-o-min-device-pixel-ratio: 5/4),
99
+ (-webkit-min-device-pixel-ratio: 1.25),
100
+ (min-resolution: 120dpi) {
101
+ /* Interface icons */
102
+ .vfb-interface-icon {
103
+ top: 5px;
104
+ background-image: url( '../img/vfb-interface-icons-2x.png?d=20130712' );
105
+ background-size: cover;
106
+ }
107
+
108
+ /* Form items */
109
+ .vfb-draggable-form-items b {
110
+ background-image: url( '../img/vfb-form-items-2x.png?d=20130712' );
111
+ background-size: cover;
112
+ }
113
+
114
+ .vfb-add-options-group .vfb-interface-plus {
115
+ top: 5px;
116
+ }
117
+
118
+ .addEmail,
119
+ .deleteEmail {
120
+ top: 28px;
121
+ }
122
+
123
+ /* Field Item arrows */
124
+ .item-edit {
125
+ background-image: url('../img/arrows-2x.png?d=20130611');
126
+ background-size: 15px 123px;
127
+ }
128
+
129
+ /* Blue Admin style */
130
+ .admin-color-classic .item-edit {
131
+ background-image: url('../img/arrows-vs-2x.png?d=20130611');
132
+ background-size: 15px 123px;
133
+ }
134
+
135
+ .item-edit:hover {
136
+ background-image: url('../img/arrows-dark-2x.png?d=20130611');
137
+ background-size: 15px 123px;
138
+ }
139
+
140
+ /* Blue Admin style */
141
+ .admin-color-classic .item-edit:hover {
142
+ background-image: url('../img/arrows-dark-vs-2x.png?d=20130611');
143
+ background-size: 15px 123px;
144
+ }
145
+
146
+ .item-edit.opened {
147
+ background-image: url('../img/arrows-2x.png?d=20130611');
148
+ background-size: 15px 123px;
149
+ }
150
+
151
+ /* Blue Admin style */
152
+ .admin-color-classic .item-edit.opened {
153
+ background-image: url('../img/arrows-vs-2x.png?d=20130611');
154
+ background-size: 15px 123px;
155
+ }
156
+
157
+ .item-edit.opened:hover {
158
+ background-image: url('../img/arrows-dark-2x.png?d=20130611');
159
+ background-size: 15px 123px;
160
+ }
161
+
162
+ /* Blue Admin style */
163
+ .admin-color-classic .item-edit.opened:hover {
164
+ background-image: url('../img/arrows-dark-vs-2x.png?d=20130611');
165
+ background-size: 15px 123px;
166
+ }
167
+
168
+ /* Form Settings arrow */
169
+ .button-icon.vfb-small-arrow {
170
+ background-image: url('../img/arrows-2x.png?d=20130611');
171
+ background-size: 15px 123px;
172
+ }
173
+
174
+ /* Blue Admin style */
175
+ .admin-color-classic .button-icon.vfb-small-arrow {
176
+ background-image: url('../img/arrows-vs-2x.png?d=20130611');
177
+ background-size: 15px 123px;
178
+ }
179
+
180
+ .current .button-icon.vfb-small-arrow {
181
+ background-image: url('../img/arrows-2x.png?d=20130611');
182
+ background-size: 15px 123px;
183
+ }
184
+
185
+ /* Blue Admin style */
186
+ .admin-color-classic .current .button-icon.vfb-small-arrow {
187
+ background-image: url('../img/arrows-vs.png?d=20130611');
188
+ background-size: 15px 123px;
189
+ }
190
+ }
admin/assets/css/sass/partials/_subnav.scss ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* !Subnavigation links */
2
+ .sub-navigation {
3
+ font-size: 12px;
4
+ float: none;
5
+ margin: 8px 0 5px;
6
+ padding: 0;
7
+ list-style: none;
8
+ white-space: nowrap;
9
+
10
+ li {
11
+ display: inline;
12
+ margin: 0;
13
+ padding: 0;
14
+ }
15
+
16
+ a {
17
+ line-height: 2;
18
+ padding: 0.2em;
19
+ text-decoration: none;
20
+
21
+ &:hover {
22
+ color: rgb(213,78,33);
23
+ }
24
+
25
+ &.current {
26
+ font-weight: bold;
27
+ color: black;
28
+ border: medium none;
29
+ background: none;
30
+ }
31
+ }
32
+ }
admin/assets/css/sass/partials/_tooltips.scss ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* !Help tooltip popups */
2
+ .vfb-tooltip {
3
+ position: relative;
4
+ float: right;
5
+ width: 16px;
6
+ height: 16px;
7
+ margin-right: 2px;
8
+ cursor: pointer;
9
+ }
10
+
11
+ .rtl .vfb-tooltip {
12
+ float: left;
13
+ margin-right: 0;
14
+ margin-left: 2px;
15
+ }
16
+
17
+ .vfb-tooltip-popup {
18
+ font-style: normal;
19
+ position: absolute;
20
+ z-index: 200;
21
+ top: -40px;
22
+ display: none;
23
+ width: 250px;
24
+ padding: 5px 20px;
25
+ text-indent: 0;
26
+ color: white;
27
+ border: 2px solid #333333;
28
+ border-radius: 5px;
29
+ background: #222222;
30
+ box-shadow: 0 0 7px black;
31
+ }
32
+
33
+ .vfb-tooltip-popup h3,
34
+ .vfb-tooltip .vfb-tooltip-popup h3 {
35
+ font-family: sans-serif;
36
+ font-size: 13px;
37
+ font-weight: normal;
38
+ margin: 5px 0;
39
+ padding: 0 0 6px 0;
40
+ color: white;
41
+ border-bottom: 1px solid white;
42
+ }
43
+
44
+ .vfb-tooltip-popup p {
45
+ font-size: 12px;
46
+ margin-top: 1 0;
47
+ color: white;
48
+ }
admin/assets/css/sass/partials/_upgrade.scss ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .vfb-pro-upgrade {
2
+ display: inline;
3
+ float: left;
4
+ margin-bottom: 20px;
5
+ padding: 10px;
6
+ border: 1px solid #21759b;
7
+ border-radius: 5px;
8
+ background-color: #d3e7ee;
9
+ }
10
+
11
+ .rtl .vfb-pro-upgrade {
12
+ float: right;
13
+ }
14
+
15
+ .vfb-pro-upgrade h2,
16
+ .wrap .vfb-pro-upgrade h2 {
17
+ font-size: 23px;
18
+ font-weight: 500;
19
+ padding: 5px 0;
20
+ text-align: center;
21
+ }
22
+
23
+ .vfb-pro-upgrade h2 a {
24
+ text-decoration: none;
25
+ }
26
+
27
+ .vfb-pro-upgrade ul {
28
+ margin-left: 10px;
29
+ list-style: outside;
30
+ }
31
+
32
+ .rtl .vfb-pro-upgrade ul {
33
+ margin-right: 10px;
34
+ margin-left: 0;
35
+ }
36
+
37
+ #vfb-upgrade-column {
38
+ display: inline;
39
+ float: left;
40
+ width: auto;
41
+ }
42
+
43
+ .rtl #vfb-upgrade-column {
44
+ float: right;
45
+ }
46
+
47
+ ul#promote-vfb {
48
+ margin-left: 20px;
49
+ list-style: disc;
50
+ }
51
+
52
+ .rtl ul#promote-vfb {
53
+ margin-right: 20px;
54
+ margin-left: auto;
55
+ }
56
+
57
+ #promote-vfb li {
58
+ text-align: left;
59
+ }
60
+
61
+ .rtl #promote-vfb li {
62
+ text-align: right;
63
+ }
admin/assets/css/sass/partials/_validation.scss ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ label.error {
2
+ display: block;
3
+ color: red;
4
+ }
5
+
6
+ #visual-form-builder-update input.error,
7
+ #visual-form-builder-update textarea.error,
8
+ #visual-form-builder-update select.error {
9
+ border: 1px solid red;
10
+ }
admin/assets/css/sass/visual-form-builder-admin.scss ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import 'partials/cta';
2
+ @import 'partials/buttons';
3
+ @import 'partials/upgrade';
4
+ @import 'partials/form-edit';
5
+ @import 'partials/form-new';
6
+ @import 'partials/form-settings';
7
+ @import 'partials/subnav';
8
+ @import 'partials/entries';
9
+ @import 'partials/fields';
10
+ @import 'partials/icons';
11
+ @import 'partials/validation';
12
+ @import 'partials/confirmation';
13
+ @import 'partials/tooltips';
14
+ @import 'partials/notices';
15
+ @import 'partials/export';
16
+ @import 'partials/print';
admin/assets/css/visual-form-builder-admin.css CHANGED
@@ -1,1741 +1,1505 @@
1
  /* VFB Pro call to action */
2
  .vfb-pro-call-to-action {
3
- padding: 5px 0;
4
- text-align: center;
5
- }
6
-
7
- .vfb-btn {
8
- display: inline-block;
9
- *display: inline;
10
- /* IE7 inline-block hack */
11
-
12
- *zoom: 1;
13
- padding: 15px 10px;
14
- margin-bottom: 0;
15
- line-height: 20px;
16
- text-align: center;
17
- vertical-align: middle;
18
- cursor: pointer;
19
- color: #333333;
20
- font-size: 21px;
21
- font-weight: 500;
22
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
23
- background-color: #f5f5f5;
24
- background-repeat: repeat-x;
25
- border-color: #e6e6e6 #e6e6e6 #bfbfbf;
26
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
27
- *background-color: #e6e6e6;
28
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
29
-
30
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
31
- border: 1px solid #cccccc;
32
- *border: 0;
33
- border-bottom-color: #b3b3b3;
34
- -webkit-border-radius: 6px;
35
- -moz-border-radius: 6px;
36
- border-radius: 6px;
37
- *margin-left: .3em;
38
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
39
- -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
40
- box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
41
- text-decoration: none;
42
- }
43
-
44
- .vfb-btn:hover,
45
- .vfb-btn:focus {
46
- color: #333333;
47
- text-decoration: none;
48
- background-position: 0 -15px;
49
- -webkit-transition: background-position 0.1s linear;
50
- -moz-transition: background-position 0.1s linear;
51
- -o-transition: background-position 0.1s linear;
52
- transition: background-position 0.1s linear;
53
- }
54
-
55
- .vfb-btn:focus {
56
- outline: thin dotted #333;
57
- outline: 5px auto -webkit-focus-ring-color;
58
- outline-offset: -2px;
59
- }
60
-
61
- .vfb-btn.active,
62
- .vfb-btn:active {
63
- background-image: none;
64
- outline: 0;
65
- -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
66
- -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
67
- box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
68
- }
69
-
70
-
71
- .vfb-btn-primary.active {
72
- color: rgba(255, 255, 255, 0.75);
73
- }
74
-
75
- .vfb-btn-primary {
76
- color: #ffffff;
77
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
78
- background-color: #006dcc;
79
- background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
80
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
81
- background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
82
- background-image: -o-linear-gradient(top, #0088cc, #0044cc);
83
- background-image: linear-gradient(to bottom, #0088cc, #0044cc);
84
- background-repeat: repeat-x;
85
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
86
- border-color: #0044cc #0044cc #002a80;
87
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
88
- *background-color: #0044cc;
89
- /* Darken IE7 buttons by default so they stand out more given they won't have borders */
90
-
91
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
92
- }
93
-
94
- .vfb-btn-primary:hover,
95
- .vfb-btn-primary:focus,
96
- .vfb-btn-primary:active,
97
- .vfb-btn-primary.active,
98
- .vfb-btn-primary.disabled,
99
- .vfb-btn-primary[disabled] {
100
- color: #ffffff;
101
- background-color: #0044cc;
102
- *background-color: #003bb3;
103
- }
104
-
105
- .vfb-btn-primary:active,
106
- .vfb-btn-primary.active {
107
- background-color: #003399 \9;
108
- }
109
-
110
- .vfb-btn-inverse {
111
- background-color: #363636;
112
- background-repeat: repeat-x;
113
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
114
- color: #FFFFFF;
115
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
116
- }
117
-
118
- .vfb-btn-inverse:hover,
119
- .vfb-btn-inverse:focus,
120
- .vfb-btn-inverse:active,
121
- .vfb-btn-inverse.active,
122
- .vfb-btn-inverse.disabled,
123
- .vfb-btn-inverse[disabled] {
124
- background-color: #222222;
125
- color: #FFFFFF;
126
- }
127
-
128
- .vfb-pro-call-to-action .cta-sign-up {
129
- color: #fff;
130
- display: block;
131
- font-size: 24px;
132
- font-weight: bold;
133
- text-align: center;
134
- text-decoration: none;
135
- text-shadow: 1px 1px 1px #2b658c;
136
- width: 100%;
137
- line-height: 22px;
138
- }
139
-
140
- .vfb-pro-call-to-action .cta-price {
141
- color: #ace7ff;
142
- display: block;
143
- font-size: 12px;
144
- font-weight: normal;
145
- line-height: 20px;
146
- text-align: center;
147
- text-decoration: none;
148
- width: 100%;
149
- line-height: 20px;
150
- }
151
-
152
- .vfb-pro-upgrade {
153
- display: inline;
154
- float: left;
155
- padding: 10px;
156
- margin-bottom: 20px;
157
- background-color: #d3e7ee;
158
- border: 1px solid #21759b;
159
- border-radius: 5px;
160
- }
161
-
162
- .rtl .vfb-pro-upgrade {
163
- float: right;
164
- }
165
-
166
- .vfb-pro-upgrade h2,
167
- .wrap .vfb-pro-upgrade h2 {
168
- font-size: 23px;
169
- font-weight: 500;
170
- padding: 5px 0;
171
- text-align: center;
172
- }
173
-
174
- .vfb-pro-upgrade h2 a {
175
- text-decoration: none;
176
- }
177
-
178
- .vfb-pro-upgrade ul {
179
- list-style: outside;
180
- margin-left: 10px;
181
- }
182
-
183
- .rtl .vfb-pro-upgrade ul {
184
- margin-left: 0;
185
- margin-right: 10px;
186
- }
187
 
188
  /* !Form View framework */
189
- #vfb-form-builder-frame{
190
- display:block;
191
- margin: 0 -8px 0 290px;
192
- }
193
 
194
- .rtl #vfb-form-builder-frame {
195
- margin: 0 290px 0 -8px;
196
- }
197
 
198
  #vfb-form-builder-frame:after,
199
  #form-editor-header .vfb-major-publishing-actions:after,
200
  #form-editor-footer .vfb-major-publishing-actions:after,
201
  #vfb-form-builder-frame .menu-item-settings:after,
202
  #vfb-form-list:after,
203
- .option:after{
204
- display: block;
205
- visibility: hidden;
206
- clear:both;
207
- height: 0;
208
- content: ".";
209
- }
210
-
211
- #vfb-form-builder-sidebar{
212
- clear:both;
213
- width:281px;
214
- }
215
-
216
- #vfb-form-builder-management{
217
- position: relative;
218
- margin-right: 10px;
219
- }
220
-
221
- .rtl #vfb-form-builder-management {
222
- margin-right: 0;
223
- margin-left: 10px;
224
- }
225
-
226
- #vfb-form-builder-management .form-edit{
227
- margin-bottom: 20px;
228
- border: 1px solid #dfdfdf;
229
- border-radius: 3px;
230
- }
231
-
232
- /* Blue Admin style */
233
- .admin-color-classic #vfb-form-builder-management .form-edit {
234
- border-color: #D0DFE9;
235
- }
236
 
237
  /* !Form Editor Header/Footer */
238
  #form-editor-header,
239
- #form-editor-footer{
240
- padding: 0 10px;
241
- background-color: #f1f1f1;
242
- }
243
-
244
- #form-editor-footer{
245
- border-top:1px solid #dfdfdf;
246
- }
247
-
248
- /* Blue Admin style */
249
- .admin-color-classic #form-editor-header,
250
- .admin-color-classic #form-editor-footer {
251
- background-color: #F5FAFD;
252
- }
253
-
254
- .admin-color-class #form-editor-footer {
255
- border-top-color: #D0DFE9;
256
- }
257
-
258
- .vfb-major-publishing-actions{
259
- clear:both;
260
- padding:3px 0 5px;
261
- }
262
-
263
- .vfb-major-publishing-actions .publishing-action{
264
- float:right;
265
- margin: 5px 0 1px;
266
- text-align: right;
267
- line-height: 23px;
268
- }
269
-
270
- #form-editor-header .publishing-action{
271
- margin-top:12px;
272
- }
273
 
274
  /* !Subnavigation links */
275
- .sub-navigation{
276
- float:none;
277
- margin:8px 0 5px;
278
- padding:0;
279
- list-style: none;
280
- white-space: nowrap;
281
- font-size: 12px;
282
- }
283
-
284
- .sub-navigation li{
285
- display: inline;
286
- margin:0;
287
- padding:0;
288
- }
289
-
290
- .sub-navigation a{
291
- padding:0.2em;
292
- text-decoration: none;
293
- line-height: 2;
294
- }
295
-
296
- .sub-navigation a.current{
297
- border:medium none;
298
- background:none;
299
- color: black;
300
- font-weight: bold;
301
- }
302
-
303
- .sub-navigation a:hover{
304
- color:rgb(213,78,33);
305
- }
306
 
307
  /* Form Box view */
308
  #vfb-sidebar,
309
- #vfb-main{
310
- float: left;
311
- margin: 10px 0;
312
- width: 280px;
313
- }
314
-
315
- .rtl #vfb-sidebar,
316
- .rtl #vfb-main {
317
- float: right;
318
- }
319
-
320
- #vfb-main{
321
- width:auto;
322
- }
323
- #vfb-main.vfb-order-type-list{
324
- width: 100%;
325
- }
326
-
327
- #vfb-main p a,
328
- #vfb-main h3 a{
329
- text-decoration: none;
330
- }
331
-
332
- #vfb-main .submitdelete{
333
- color: #BC0B0B;
334
- text-decoration: none;
335
- }
336
- #vfb-main .submitdelete:hover{
337
- color:red;
338
- }
339
-
340
- #vfb-sidebar{
341
- margin-left: -300px;
342
- }
343
-
344
- .rtl #vfb-sidebar {
345
- margin-left: 0;
346
- margin-right: -300px;
347
- }
348
-
349
- #vfb-form-list{
350
- display: block;
351
- margin-left: 300px;
352
- }
353
-
354
- .rtl #vfb-form-list {
355
- margin-left: 0;
356
- margin-right: 300px;
357
- }
358
 
359
  /* !Form Boxes */
360
- .vfb-box{
361
- position:relative;
362
- float:left;
363
- padding:0 10px;
364
- border: 1px solid #DFDFDF;
365
- border-radius: 3px 3px 3px 3px;
366
- background-color: #F5F5F5;
367
- background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
368
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f5f5f5));
369
- background: -webkit-linear-gradient(top, #ffffff 0%,#f5f5f5 100%);
370
- background: -o-linear-gradient(top, #ffffff 0%,#f5f5f5 100%);
371
- background: -ms-linear-gradient(top, #ffffff 0%,#f5f5f5 100%);
372
- background: linear-gradient(to bottom, #ffffff 0%,#f5f5f5 100%);
373
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5',GradientType=0 );
374
- box-shadow: 0 1px 0 #FFFFFF inset;
375
- line-height: 1.4em;
376
- }
377
-
378
- .vfb-form-alpha-list{
379
- width: 70%;
380
- float: left;
381
- padding-right:20px;
382
- }
383
-
384
- .rtl .vfb-form-alpha-list {
385
- float: right;
386
- padding-right: 0;
387
- padding-left: 20px;
388
- }
389
-
390
- .vfb-form-alpha-list hr{
391
- display:block;
392
- margin:1em 0;
393
- padding:0;
394
- height:1px;
395
- border:0;
396
- border-top:1px solid #ccc;
397
- }
398
-
399
- .vfb-form-alpha-group .letter,
400
- .wrap h2.letter{
401
- float:left;
402
- padding:0;
403
- color:#666;
404
- font-size:14px;
405
- line-height: 17px;
406
- }
407
-
408
- .vfb-form-alpha-form{
409
- display: block;
410
- margin:10px 0;
411
- padding-left:150px;
412
- width:auto;
413
- }
414
- .vfb-form-alpha-form h3{
415
- float:left;
416
- margin: 0;
417
- width:50%;
418
- word-wrap: break-word;
419
- font-size:17px;
420
- }
421
-
422
- .vfb-form-alpha-form .vfb-publishing-actions,
423
- .vfb-form-alpha-form .vfb-form-meta{
424
- float:left;
425
- width:20%;
426
- text-align: center;
427
- }
428
-
429
- .vfb-form-alpha-form .vfb-form-meta{
430
- width: 30%;
431
- }
432
-
433
- .vfb-form-alpha-form .vfb-publishing-actions p,
434
- .vfb-form-alpha-form .vfb-form-meta p{
435
- margin:0;
436
- }
437
-
438
- .vfb-form-alpha-form .vfb-form-meta,
439
- .vfb-form-alpha-form .paypal{
440
- float:left;
441
- margin:0;
442
- text-align: left;
443
- }
444
-
445
- .rtl .vfb-form-alpha-form .vfb-form-meta,
446
- .rtl .vfb-form-alpha-form .paypal {
447
- float: right;
448
- text-align: right;
449
- }
450
-
451
- .vfb-sortable-placeholder{
452
- display:block;
453
- height:35px;
454
- width:400px;
455
- margin:8px;
456
- border:1px dashed #bbb;
457
- background-color:#f5f5f5;
458
- }
459
-
460
- #vfb-main .vfb-sortable-placeholder{
461
- float:left;
462
- margin:8px;
463
- height:200px;
464
- width:210px;
465
- }
466
-
467
- .rtl #vfb-main .vfb-sortable-placeholder {
468
- float: right;
469
- }
470
-
471
- #vfb-menu-to-edit .mjs-nestedSortable-error{
472
- border-color:red;
473
- background-color:#fbe3e4;
474
- color:#8a1f11;
475
- }
476
- .vfb-meta-entries-total span,
477
- .vfb-meta-entries-total-today span{
478
- font-size: 11px;
479
- font-weight: bold;
480
- height: 1.4em;
481
- line-height: 1.4em;
482
- min-width: .7em;
483
- padding: 0 6px;
484
- display: inline-block;
485
- border-radius: 5px;
486
- background-color: #bbb;
487
- color: white;
488
- text-align: center;
489
- }
490
-
491
- .vfb-meta-entries-total:hover span,
492
- .vfb-meta-entries-total-today:hover span{
493
- background-color: #d54e21;
494
- }
495
  .fixed .column-entries,
496
  .fixed .column-form_id {
497
- width: 8em;
498
- }
499
 
500
  strong .vfb-meta-entries-total span {
501
- background-color: #21759B;
502
- }
503
 
504
  .entries-count-wrapper {
505
- font-family: sans-serif;
506
- min-width: 22px;
507
- padding-bottom: 1px;
508
- }
509
 
510
  /* !New Form box */
511
- #new-form{
512
- margin:8px 0;
513
- padding-top:10px;
514
- width:75px;
515
- height:105px;
516
- text-align: center;
517
- }
518
- #new-form a{
519
- display:block;
520
- width:auto;
521
- text-decoration: none;
522
- }
523
-
524
- #post-body{
525
- padding: 10px;
526
- background: white;
527
- }
528
 
529
  /* !Form Editor columns */
530
- .vfb-postbox-container{
531
- float:left;
532
- margin:0 8px;
533
- width:100%;
534
- }
535
 
536
- .rtl .vfb-postbox-container {
537
- float: right;
538
- }
539
 
540
- #vfb-postbox-container-1 .postbox{
541
- min-width:281px;
542
- }
543
 
544
- #vfb-postbox-container-2{
545
- min-width: 485px;
546
- }
547
 
548
- #vfb-form-builder-frame.columns-1{
549
- margin-left:-8px;
550
- }
551
 
552
- .rtl #vfb-form-builder-frame.columns-1 {
553
- margin-left: 0;
554
- margin-right: -8px;
555
- }
556
 
557
- #vfb-form-builder-frame.columns-1 #vfb-postbox-container-1{
558
- float:none;
559
- }
560
 
561
- #vfb-form-builder-frame.columns-1 #vfb-postbox-container-2{
562
- width:99%;
563
- }
564
 
565
- #vfb-form-builder-frame.columns-2 #vfb-postbox-container-3{
566
- display:none;
567
- }
568
 
569
  #vfb-form-builder-frame.columns-2 #vfb-postbox-container-1,
570
- #vfb-form-builder-frame.columns-3 #vfb-postbox-container-1{
571
- margin-left:-290px;
572
- width:281px;
573
- }
574
-
575
- .rtl #vfb-form-builder-frame.columns-2 #vfb-postbox-container-1,
576
- .rtl #vfb-form-builder-frame.columns-3 #vfb-postbox-container-1{
577
- margin-left: 0;
578
- margin-right: -290px;
579
- }
580
-
581
- #vfb-form-builder-frame.columns-3 #vfb-form-builder-management{
582
- margin-right: 0;
583
- }
584
-
585
- #vfb-form-builder-frame.columns-3 #vfb-postbox-container-2{
586
- width:30%;
587
- }
588
-
589
- #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{
590
- display:inline;
591
- margin-right:0;
592
- width:46.5%;
593
- }
594
-
595
- .rtl #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{
596
- margin-right: 0;
597
- margin-left: 0;
598
- }
599
-
600
- #vfb-form-meta-preview iframe{
601
- width:100%;
602
- height: 100%;
603
- }
604
 
605
  #vfb_form_media_button_tip input {
606
- width: 100%;
607
- border: 0;
608
- padding: 6px;
609
- font-family: Consolas, Monaco, monospace;
610
- font-size: 12px;
611
- }
612
 
613
  /* !Form Editor Columns - One Column */
614
  @media only screen and (max-width: 799px) {
615
- #vfb-form-builder-frame .vfb-postbox-container {
616
- width: 100%;
617
- }
618
- .columns-prefs .columns-prefs-3{
619
- display: none;
620
- }
621
- }
622
 
623
  /* !Form Editor Columns - Two Columns */
624
  @media only screen and (min-width: 800px) and (max-width: 1200px) {
625
- #vfb-form-builder-frame .vfb-postbox-container {
626
- width: 49.5%;
627
- }
628
-
629
- #vfb-form-builder-frame.columns-3 #vfb-postbox-container-2,
630
- #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{
631
- width: 50.5%;
632
- }
633
-
634
- #vfb-form-builder-frame.columns-1 .vfb-postbox-container {
635
- width: 100%;
636
- }
637
- }
638
  /* !Form Editor Columns - Three Columns */
639
  @media only screen and (min-width: 1600px) {
640
- #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{
641
- width: 58%;
642
- }
643
- }
644
 
645
  /* !Field Item arrows */
646
  .item-edit {
647
- position: absolute;
648
- top: 3px;
649
- right: -20px;
650
- display: block;
651
- overflow: hidden;
652
- width:30px;
653
- height: 40px;
654
- background:url('../img/arrows.png?d=20130703') no-repeat scroll 8px 10px transparent;
655
- text-indent:-999em;
656
- }
657
-
658
- /* Blue Admin style */
659
- .admin-color-classic .item-edit {
660
- background: url('../img/arrows-vs.png?d=20130703') no-repeat scroll 8px 10px transparent;
661
- }
662
-
663
- .rtl .item-edit {
664
- right: auto;
665
- left: -20px;
666
- }
667
-
668
- .item-edit:hover{
669
- background:url('../img/arrows-dark.png?d=20130703') no-repeat scroll 8px 10px transparent;
670
- }
671
-
672
- /* Blue Admin style */
673
- .admin-color-classic .item-edit:hover {
674
- background: url('../img/arrows-dark-vs.png?d=20130703') no-repeat scroll 8px 10px transparent;
675
- }
676
-
677
- .item-edit.opened{
678
- background:url('../img/arrows.png?d=20130703') no-repeat scroll 8px -25px transparent;
679
- }
680
-
681
- /* Blue Admin style */
682
- .admin-color-classic .item-edit.opened {
683
- background: url('../img/arrows-vs.png?d=20130703') no-repeat scroll 8px -25px transparent;
684
- }
685
-
686
- .item-edit.opened:hover{
687
- background:url('../img/arrows-dark.png?d=20130703') no-repeat scroll 8px -25px transparent;
688
- }
689
-
690
- /* Blue Admin style */
691
- .admin-color-classic .item-edit.opened:hover {
692
- background: url('../img/arrows-dark-vs.png?d=20130703') no-repeat scroll 8px -25px transparent;
693
- }
694
 
695
  /* !Field Item attribute input styles */
696
  .option .widefat,
697
  .options-other-show .widefat,
698
  .options-other-hide .widefat {
699
- margin: 0 6px 7px 0;
700
- width: 320px;
701
- }
702
 
703
- .rtl .option .widefat,
704
- .rtl .options-other-show .widefat,
705
- .rtl .options-other-hide .widefat {
706
- margin: 0 0 7px 6px;
707
- }
708
 
709
- #form-settings .description-thin{
710
- margin:12px 10px 12px 0;
711
- }
712
 
713
- .rtl #form-settings .description-thin {
714
- margin: 12px 0 12px 10px;
715
- }
716
 
717
  .description-thin,
718
  .description-wide {
719
- float: left;
720
- margin-right: 10px;
721
- }
722
-
723
- .rtl .description-thin,
724
- .rtl .description-wide {
725
- float: right;
726
- margin-right: 0;
727
- margin-left: 10px;
728
- }
729
-
730
- .description-thin {
731
- width: 190px;
732
- height: 40px;
733
- }
734
-
735
- .description-wide {
736
- width: 390px;
737
- }
738
 
739
  /* Interface icons */
740
  .vfb-interface-icon {
741
- position: absolute;
742
- top: 4px;
743
- right: 4px;
744
- display: inline-block;
745
- width: 16px;
746
- height: 16px;
747
- background-color: transparent;
748
- background-image: url('../img/vfb-interface-icons.png?d=20130713');
749
- background-repeat: no-repeat;
750
- text-indent: -9999px;
751
- }
752
-
753
- .vfb-interface-settings { background-position: -32px 0;}
754
- .vfb-interface-duplicate { background-position: 0 0;}
755
- .vfb-interface-trash { background-position: -64px 0;}
756
- .vfb-interface-conditional { background-position: -224px 0;}
757
- .vfb-interface-sort { background-position: -128px 0;}
758
- .vfb-interface-plus { background-position: -160px 0;}
759
- .vfb-interface-minus { background-position: -192px 0;}
760
- .vfb-interface-bulk-add { background-position: -96px 0;}
761
-
762
- .vfb-interface-plus,
763
- .vfb-interface-minus {
764
- top: 0;
765
- }
766
-
767
- /* Form Settings add/delete emails */
768
- .addEmail,
769
- .deleteEmail {
770
- top: 28px;
771
- }
772
- .addEmail {
773
- right: 55px;
774
- }
775
-
776
- .rtl .addEmail {
777
- right: auto;
778
- left: 55px;
779
- }
780
-
781
- .deleteEmail {
782
- right: 30px;
783
- }
784
-
785
- .rtl .deleteEmail {
786
- right: auto;
787
- left: 30px;
788
- }
789
-
790
- /* Form item delete/sort options */
791
- .deleteOption,
792
- .vfb-interface-sort,
793
- .addCondition,
794
- .deleteCondition {
795
- top: 3px;
796
- }
797
-
798
- .deleteOption,
799
- .addCondition {
800
- right: 25px;
801
- }
802
-
803
- .rtl .deleteOption,
804
- .rtl .addCondition {
805
- right: auto;
806
- left: 25px;
807
- }
808
-
809
- .vfb-interface-sort,
810
- .deleteCondition {
811
- right: 0;
812
- }
813
-
814
- .rtl .vfb-interface-sort,
815
- .rtl .deleteCondition {
816
- right: auto;
817
- left: 0;
818
- }
819
-
820
- .vfb-interface-sort:hover {
821
- cursor: pointer;
822
- }
 
 
 
823
 
824
  .option {
825
- float: left;
826
- width: 97%;
827
- position: relative;
828
- }
829
-
830
- .rtl .option {
831
- float: right;
832
- }
833
-
834
- #vfb-poststuff{
835
- display:block;
836
- margin-right:300px;
837
- }
838
-
839
- .rtl #vfb-poststuff {
840
- margin-right: 0;
841
- margin-left: 300px;
842
- }
843
-
844
- #vfb-entries-body-content{
845
- float:left;
846
- width:100%;
847
- }
848
-
849
- .rtl #vfb-entries-body-content {
850
- float: right;
851
- }
852
-
853
- .metabox-holder #vfb-entries-body-content h3{
854
- font-weight: bold;
855
- font-family: sans-serif;
856
- }
857
-
858
- #entry-edit #side-info-column{
859
- margin-right:-300px;
860
- }
861
-
862
- .rtl #entry-edit #side-info-column {
863
- margin-right: 0;
864
- margin-left: -300px;
865
- }
866
-
867
- label.error{
868
- display:block;
869
- color:red;
870
- }
871
 
872
  #visual-form-builder-update input.error,
873
  #visual-form-builder-update textarea.error,
874
- #visual-form-builder-update select.error{
875
- border:1px solid red;
876
- }
877
 
878
  #vfb-menu-to-edit .menu-item-settings {
879
- width: 402px;
880
- }
881
 
882
  .vfb-menu-item-handle {
883
- background: white;
884
- border: 1px solid #DFDFDF;
885
- border-radius: 3px;
886
- height: auto;
887
- line-height: 35px;
888
- overflow: hidden;
889
- padding: 10px 15px;
890
- position: relative;
891
- text-shadow: 0 1px 0 #FFFFFF;
892
- width: 382px;
893
- word-wrap: break-word;
894
- cursor: move;
895
- }
896
-
897
- .vfb-menu-item-handle:hover {
898
- border-color: #999;
899
- }
900
-
901
- /* Blue Admin style */
902
- .admin-color-classic .vfb-menu-item-handle {
903
- background: #F5FAFD;
904
- box-shadow: 0 1px 0 #FFFFFF inset;
905
- border-color: #D0DFE9;
906
- }
907
-
908
- .rtl .vfb-menu-item-handle {
909
- padding-left: 0;
910
- padding-right: 10px;
911
- }
912
-
913
- .vfb-menu-item-type-fieldset,
914
- .vfb-menu-item-type-verification,
915
- #form-element-fieldset {
916
- background: #e3e3e3;
917
- box-shadow:0 1px 0 #e3e3e3 inset;
918
- }
919
-
920
- /* Blue Admin style */
921
- .admin-color-classic .vfb-menu-item-type-fieldset,
922
- .admin-color-classic .vfb-menu-item-type-verification,
923
- .admin-color-classic #form-element-fieldset {
924
- background: #e2f3ff;
925
- box-shadow: 0 1px 0 #FFFFFF inset;
926
- }
927
-
928
- .vfb-menu-item-handle .item-title {
929
- min-height: 20px;
930
- display: block;
931
- font-size: 12px;
932
- font-weight: bold;
933
- line-height: 20px;
934
- margin-right: 13em;
935
- }
936
-
937
- .rtl .vfb-menu-item-handle .item-title {
938
- margin-right: 0;
939
- margin-left: 13em;
940
- }
941
-
942
- .vfb-menu-item-active .vfb-menu-item-handle {
943
- border-bottom-left-radius: 0;
944
- border-bottom-right-radius: 0;
945
- }
946
-
947
- .sender-labels{
948
- width:80px;
949
- }
950
-
951
- .is-field-required{
952
- color:#BC1212;
953
- }
954
-
955
- #form-details-nav{
956
- padding-top:10px;
957
- font-size:1.0em;
958
- }
959
- #form-details-nav a,
960
- .charts-nav a{
961
- padding:5px 10px;
962
- text-decoration:none;
963
- font-weight:bold;
964
- }
965
-
966
- #form-details-nav a.current,
967
- .charts-nav a.current{
968
- height:40px;
969
- border-color: #dfdfdf;
970
- border-radius:5px;
971
- background-color:#777;
972
- background-image: -ms-linear-gradient(bottom, #6d6d6d, #808080);
973
- background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
974
- background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
975
- background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
976
- background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
977
- background-image: linear-gradient(bottom, #6d6d6d, #808080);
978
- color:white;
979
- text-shadow:0 -1px 0 #333333;
980
- }
981
 
982
  /* !Form Settings - Confirmation */
983
  .form-details,
984
  #form-success-message-text,
985
  #form-success-message-page,
986
- #form-success-message-redirect{
987
- display:none;
988
- }
989
-
990
- .form-details-current, .active{
991
- display:block;
992
- }
993
-
994
- #confirmation-message textarea,
995
- #notification textarea{
996
- width:100%;
997
- height:10em;
998
- font-family:Consolas,Monaco,monospace;
999
- }
1000
-
1001
- #form-success-message-page,
1002
- #form-success-message-redirect{
1003
- margin-top:10px;
1004
- width:100%;
1005
- }
1006
-
1007
- .post-body-plain ol li{
1008
- list-style:decimal;
1009
- }
1010
 
1011
  #vfb-upgrade-column {
1012
- display: inline;
1013
- float: left;
1014
- width: auto;
1015
- }
1016
 
1017
- .rtl #vfb-upgrade-column {
1018
- float: right;
1019
- }
1020
 
1021
  ul#promote-vfb {
1022
- margin-left: 20px;
1023
- list-style: disc;
1024
- }
1025
 
1026
- .rtl ul#promote-vfb {
1027
- margin-left: auto;
1028
- margin-right: 20px;
1029
- }
1030
 
1031
  #promote-vfb li {
1032
- text-align: left;
1033
- }
1034
 
1035
- .rtl #promote-vfb li {
1036
- text-align: right;
1037
- }
1038
 
1039
  .menu .ui-nestedSortable-error {
1040
- background-color: #fbe3e4;
1041
- border-color: red;
1042
- color: #8a1f11;
1043
- }
1044
-
1045
- ul#vfb-menu-to-edit ul{
1046
- margin: 0 0 0 25px;
1047
- padding: 0;
1048
- width:98%;
1049
- list-style-type: none;
1050
- }
1051
- #vfb-menu-to-edit{
1052
- margin-top:0;
1053
- padding:1em 0;
1054
- }
1055
-
1056
- #vfb-fieldset-first-warning{
1057
- display: none;
1058
- }
1059
 
1060
  .ui-state-disabled,
1061
  .ui-state-disabled dl,
1062
  .ui-state-disabled dt,
1063
  .form-item.ui-state-disabled {
1064
- opacity: 100;
1065
- filter: alpha(Opacity=100);
1066
- background-image: none;
1067
- }
1068
-
1069
- .ui-state-disabled .vfb-menu-item-handle,
1070
- .ui-state-disabled .menu-item-handle {
1071
- background: #dfdfdf;
1072
- box-shadow: none;
1073
- cursor: default;
1074
- }
1075
-
1076
- .vfb-details{
1077
- margin-bottom:10px;
1078
- padding:0 10px;
1079
- border:1px solid #ccc;
1080
- border-radius:3px;
1081
- }
1082
-
1083
- .vfb-details.section{
1084
- width:97.55%;
1085
- background-color:#efefef;
1086
- }
1087
-
1088
- .vfb-details .postbox{
1089
- min-height:60px;
1090
- }
1091
-
1092
- #poststuff .vfb-details h2{
1093
- margin-top:0;
1094
- }
1095
-
1096
- #poststuff h3.section-heading{
1097
- padding-left:0;
1098
- }
1099
 
1100
  /* !Form Items */
1101
- #form-items .tabs-panel{
1102
- overflow: visible;
1103
- padding: 0.5em 0 0.5em 4px;
1104
- min-height: 325px;
1105
- height: auto;
1106
- }
1107
 
1108
- .rtl #form-items .tabs-panel {
1109
- padding: 0.5em 4px 0.5em 0;
1110
- }
1111
 
1112
  ul.vfb-fields-col-1,
1113
- ul.vfb-fields-col-2{
1114
- float:left;
1115
- width:50%;
1116
- list-style: none;
1117
- }
1118
-
1119
- .rtl ul.vfb-fields-col-1,
1120
- .rtl ul.vfb-fields-col-2 {
1121
- float: right;
1122
- }
1123
-
1124
- #vfb-form-builder-frame.columns-1 #vfb-postbox-container-1 #form-items .tabs-panel{
1125
- height:auto;
1126
- }
1127
-
1128
- .vfb-draggable-form-items{
1129
- position: relative;
1130
- position: relative;
1131
- display: block;
1132
- margin-right: 8px;
1133
- padding:4px 0 4px 34px;
1134
- border:1px solid #bbb;
1135
- border-radius: 3px;
1136
- color:#464646;
1137
- text-align: left;
1138
- text-decoration: none;
1139
- font-size: 12px;
1140
- }
1141
-
1142
- .rtl .vfb-draggable-form-items {
1143
- margin-right: 0;
1144
- margin-left: 8px;
1145
- padding: 4px 34px 4px 10px;
1146
- }
1147
-
1148
- .vfb-draggable-form-items:hover{
1149
- border-color:#aaaaaa;
1150
- }
1151
-
1152
- .vfb-draggable-form-items b{
1153
- position: absolute;
1154
- left:8px;
1155
- display: inline-block;
1156
- width:16px;
1157
- height:16px;
1158
- background-color: transparent;
1159
- background-image: url('../img/vfb-form-items.png?d=20130712');
1160
- background-repeat: no-repeat;
1161
- line-height: 16px;
1162
- }
1163
-
1164
- .rtl .vfb-draggable-form-items b {
1165
- left: auto;
1166
- right: 8px;
1167
- }
1168
-
1169
- #form-element-address b{ background-position: -128px 0;}
1170
- #form-element-autocomplete b{ background-position: -384px 0;}
1171
- #form-element-checkbox b{ background-position: -672px 0;}
1172
- #form-element-color b{ background-position: 0 0;}
1173
- #form-element-currency b{ background-position: -64px 0;}
1174
- #form-element-datepicker b{ background-position: -224px 0;}
1175
- #form-element-digits b{ background-position: -832px 0;}
1176
- #form-element-email b{ background-position: -160px 0;}
1177
- #form-element-file b{ background-position: -512px 0;}
1178
- #form-element-hidden b{ background-position: -544px 0;}
1179
- #form-element-html b{ background-position: -800px 0;}
1180
- #form-element-instructions b{ background-position: -256px 0;}
1181
- #form-element-ip b{ background-position: -448px 0;}
1182
- #form-element-max b{ background-position: -576px 0;}
1183
- #form-element-min b{ background-position: -608px 0;}
1184
- #form-element-name b{ background-position: -320px 0;}
1185
- #form-element-pagebreak b{ background-position: -768px 0;}
1186
- #form-element-password b{ background-position: -352px 0;}
1187
- #form-element-phone b{ background-position: -96px 0;}
1188
- #form-element-radio b{ background-position: -704px 0;}
1189
- #form-element-range b{ background-position: -640px 0;}
1190
- #form-element-select b{ background-position: -416px 0;}
1191
- #form-element-text b{ background-position: -736px 0;}
1192
- #form-element-textarea b{ background-position: -32px 0;}
1193
- #form-element-time b{ background-position: -192px 0;}
1194
- #form-element-username b{ background-position: -288px 0;}
1195
- #form-element-url b{ background-position: -480px 0;}
1196
-
1197
- .static-vars-inactive{
1198
- display:none;
1199
- }
1200
-
1201
- .static-vars-active{
1202
- display:block;
1203
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1204
 
1205
  /* !Form Settings buttons */
1206
  .vfb-button {
1207
- position: relative;
1208
- display: inline-block;
1209
- overflow: visible;
1210
- margin: 0;
1211
- padding:0.5em 2.5em 0.5em 1em;
1212
- outline: none;
1213
- border: 1px solid #d4d4d4;
1214
- border-radius: 0.2em;
1215
- background-color: #f5f5f5;
1216
- color: #333;
1217
- text-decoration: none;
1218
- white-space: nowrap;
1219
- font:12px/normal sans-serif;
1220
- cursor: pointer;
1221
- zoom: 1;
1222
- -webkit-background-clip: padding;
1223
- -moz-background-clip: padding;
1224
- -o-background-clip: padding-box;
1225
- *display: inline;
1226
- }
1227
-
1228
- .vfb-button:hover,
1229
- .vfb-button:active,
1230
- .vfb-button.current {
1231
- border-color: #929292;
1232
- border-bottom-color: #929292;
1233
- background-color: #eeeeee;
1234
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#cccccc));
1235
- background-image: -moz-linear-gradient(#eeeeee, #cccccc);
1236
- background-image: -o-linear-gradient(#eeeeee, #cccccc);
1237
- background-image: linear-gradient(#eeeeee, #cccccc);
1238
- color: #000;
1239
- }
1240
-
1241
- .vfb-button.current{
1242
- font-weight:bold;
1243
- }
1244
-
1245
- .vfb-button::-moz-focus-inner {
1246
- padding: 0;
1247
- border: 0;
1248
- }
1249
-
1250
- .vfb-button.vfb-settings:hover,
1251
- .vfb-button.vfb-settings:focus,
1252
- .vfb-button.vfb-settings:active {
1253
- color: #3072b3;
1254
- }
1255
-
1256
- .vfb-button.vfb-delete:hover,
1257
- .vfb-button.vfb-delete:focus,
1258
- .vfb-button.vfb-delete:active {
1259
- color: #900;
1260
- }
1261
-
1262
- .vfb-button.vfb-duplicate:hover,
1263
- .vfb-button.vfb-duplicate:focus,
1264
- .vfb-button.vfb-duplicate:active {
1265
- color: #008e0d;
1266
- }
1267
-
1268
- .vfb-button.vfb-conditional-fields:hover,
1269
- .vfb-button.vfb-conditional-fields:focus,
1270
- .vfb-button.vfb-conditional-fields:active {
1271
-
1272
- }
1273
-
1274
- .vfb-button-group{
1275
- display:inline-block;
1276
- margin: 10px 0;
1277
- list-style:none;
1278
- }
1279
-
1280
- .rtl .vfb-button-group {
1281
- margin-left: -2px;
1282
- }
1283
-
1284
- .vfb-button-group .vfb-button{
1285
- float:left;
1286
- margin-right: 5px;
1287
- }
1288
-
1289
- .rtl .vfb-button-group .vfb-button {
1290
- float: right;
1291
- margin-right: 0;
1292
- margin-left: 5px;
1293
- }
1294
-
1295
- .vfb-button-group .button-primary {
1296
- margin-top: 2px;
1297
- }
1298
-
1299
- .vfb-item-actions{
1300
- margin-right: 10px;
1301
- margin-bottom: 10px;
1302
- text-align: center;
1303
- }
1304
-
1305
- .rtl .vfb-item-actions {
1306
- margin-right: 0;
1307
- margin-left: 10px;
1308
- }
1309
-
1310
- .vfb-item-actions .vfb-delete{
1311
- float:left;
1312
- }
1313
-
1314
- .rtl .vfb-item-actions .vfb-delete {
1315
- float: right;
1316
- }
1317
-
1318
- .vfb-item-actions .vfb-conditional-fields{
1319
- float:right;
1320
- }
1321
-
1322
- .rtl .vfb-item-actions .vfb-conditional-fields {
1323
- float: left;
1324
- }
1325
-
1326
- .vfb-item-actions .vfb-delete,
1327
- .vfb-item-actions .vfb-duplicate,
1328
- .vfb-item-actions .vfb-conditional-fields{
1329
- margin-top: 10px;
1330
- }
1331
-
1332
- #form-settings{
1333
- display:none;
1334
- width: 100%;
1335
- max-width: 460px;
1336
- margin-bottom: 15px;
1337
- border-bottom: 1px solid #D6D6D6;
1338
- }
1339
-
1340
- #form-settings.current{
1341
- display:block;
1342
- }
1343
-
1344
- .form-details{
1345
- padding:20px;
1346
- background: rgb( 255, 255, 255 );
1347
- background: rgba(255, 255, 255, 0.5);
1348
- border-left: 1px solid #D6D6D6;
1349
- border-right: 1px solid #D6D6D6;
1350
- }
1351
-
1352
- .form-details.on{
1353
- display:block;
1354
- }
1355
-
1356
- .settings-links{
1357
- position: relative;
1358
- z-index: 1;
1359
- display: block;
1360
- padding: 5px 15px;
1361
- height: 25px;
1362
- background: #f5f5f5;
1363
- border-top: 1px solid #cccccc;
1364
- border-left: 1px solid #cccccc;
1365
- border-right: 1px solid #cccccc;
1366
- color: #333333;
1367
- text-decoration:none;
1368
- text-transform:uppercase;
1369
- text-shadow: 0 1px 0 #FFFFFF;
1370
- font-weight: normal;
1371
- font-size: 15px;
1372
- font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
1373
- line-height: 25px;
1374
- cursor: pointer;
1375
- }
1376
-
1377
- .settings-links .vfb-large-arrow{
1378
- position: absolute;
1379
- top: 16px;
1380
- right: 25px;
1381
- width: 5px;
1382
- height: 0;
1383
- z-index: 1;
1384
- }
1385
-
1386
- .settings-links .vfb-large-arrow:after {
1387
- content: '';
1388
- width: 0;
1389
- height: 0;
1390
- border-color: #ccc transparent;
1391
- border-style: solid;
1392
- border-width: 6px 6px 0;
1393
- position: absolute;
1394
- z-index: 1;
1395
- }
1396
-
1397
- .rtl .settings-links .vfb-large-arrow {
1398
- right: auto;
1399
- left: 13px;
1400
- }
1401
-
1402
- .settings-links.on {
1403
- border-bottom: 1px solid #808080;
1404
- }
1405
-
1406
- .settings-links:hover,
1407
- .settings-links.on {
1408
- background: #808080;
1409
- color: #ffffff;
1410
- text-shadow: 0 -1px 0 #333333;
1411
- }
1412
-
1413
- .settings-links:first-child {
1414
- border-top-left-radius: 3px;
1415
- border-top-right-radius: 3px;
1416
- }
1417
 
1418
  .vfb-notices {
1419
- padding: 15px;
1420
- margin-top: 10px;
1421
- margin-bottom: 20px;
1422
- border: 1px solid transparent;
1423
- border-radius: 4px;
1424
- }
1425
  .vfb-notices.vfb-notice-success {
1426
- background-color: #dff0d8;
1427
- border-color: #d6e9c6;
1428
- color: #3c763d;
1429
- }
1430
 
1431
  .vfb-notices.vfb-notice-info {
1432
- background-color: #d9edf7;
1433
- border-color: #bce8f1;
1434
- color: #31708f;
1435
- }
1436
 
1437
  .vfb-notices.vfb-notice-warning {
1438
- background-color: #fcf8e3;
1439
- border-color: #faebcc;
1440
- color: #8a6d3b;
1441
- }
1442
 
1443
  .vfb-notices.vfb-notice-danger {
1444
- background-color: #f2dede;
1445
- border-color: #ebccd1;
1446
- color: #a94442;
1447
- }
1448
 
1449
  .vfb-notices h3 {
1450
- margin-top: 0;
1451
- color: inherit;
1452
- }
1453
 
1454
  /* !Help tooltip popups */
1455
- .vfb-tooltip{
1456
- position: relative;
1457
- float: right;
1458
- margin-right: 2px;
1459
- width: 16px;
1460
- height: 16px;
1461
- cursor: pointer;
1462
- }
1463
-
1464
- .rtl .vfb-tooltip {
1465
- float: left;
1466
- margin-right: 0;
1467
- margin-left: 2px;
1468
- }
1469
-
1470
- .vfb-tooltip-popup {
1471
- position: absolute;
1472
- top: -40px;
1473
- z-index: 200;
1474
- display: none;
1475
- padding: 5px 20px;
1476
- width: 250px;
1477
- border: 2px solid #333;
1478
- border-radius: 5px;
1479
- background: #222;
1480
- box-shadow: 0 0 7px black;
1481
- color: white;
1482
- text-indent: 0;
1483
- font-style: normal;
1484
- }
1485
-
1486
- .vfb-tooltip-popup h3,
1487
- .vfb-tooltip .vfb-tooltip-popup h3{
1488
- margin: 5px 0;
1489
- padding: 0 0 6px 0;
1490
- border-bottom: 1px solid white;
1491
- color: white;
1492
- font-weight: normal;
1493
- font-size: 13px;
1494
- font-family: sans-serif;
1495
- }
1496
-
1497
- .vfb-tooltip-popup p{
1498
- margin-top:1 0px;
1499
- color: white;
1500
- font-size: 12px;
1501
- }
1502
 
1503
  /* !Bulk Add Options */
1504
  .vfb-add-options-group {
1505
- display: inline-block;
1506
- margin: 10px 0;
1507
- list-style: none;
1508
- text-align: center;
1509
- width: 95%;
1510
- }
1511
 
1512
- .vfb-add-options-group .vfb-interface-plus {
1513
- top: 4px;
1514
- }
1515
 
1516
  /* !Import/Export */
1517
  .vfb-export-label {
1518
- width: 10em;
1519
- float: left;
1520
- }
1521
 
1522
- .rtl .vfb-export-label {
1523
- float: right;
1524
- }
1525
 
1526
  #vfb-export-entries-fields {
1527
- height:275px;
1528
- width:300px;
1529
- overflow: auto;
1530
- display: block;
1531
- border:1px solid #e8e8e8;
1532
- border-radius: 3px;
1533
- margin-left: 10em;
1534
- padding: 5px;
1535
- background: white;
1536
- }
1537
 
1538
  #vfb-export-select-all,
1539
  #vfb-export-unselect-all {
1540
- width: 150px;
1541
- display: inline-block;
1542
- text-align: left;
1543
- }
1544
-
1545
- #vfb-export-unselect-all {
1546
- text-align: right;
1547
- margin-left: 5px;
1548
- }
1549
 
 
 
 
1550
 
1551
  @media print {
1552
- body * {
1553
- float: none;
1554
- }
1555
-
1556
- html,
1557
- .wrap,
1558
- #wpbody-content,
1559
- #vfb-poststuff {
1560
- background: none !important;
1561
- padding: 0;
1562
- margin: 0;
1563
- height: auto;
1564
- }
1565
-
1566
- #wpadminbar,
1567
- #adminmenuwrap,
1568
- #adminmenushadow,
1569
- #adminmenuback,
1570
- .screen-reader-shortcut,
1571
- #screen-meta,
1572
- #screen-meta-links,
1573
- #wpfooter,
1574
- #icon-options-general,
1575
- .wrap h2,
1576
- .view-entry,
1577
- #major-publishing-actions,
1578
- .clear {
1579
- display: none;
1580
- }
1581
-
1582
- #wpcontent,
1583
- body #wpcontent {
1584
- margin-left: 0;
1585
- width: auto;
1586
- height: auto;
1587
- }
1588
-
1589
- #entry-edit h3 span {
1590
- font-size: 23px;
1591
- font-weight: normal;
1592
- }
1593
-
1594
- #vfb-poststuff {
1595
- page-break-after: auto;
1596
- }
1597
-
1598
- #vfb-entries-body-content {
1599
- width: 100%;
1600
- height: auto;
1601
- margin: 0 0 50px 0;
1602
- padding: 0;
1603
- }
1604
-
1605
- #side-info-column{
1606
- width: 100%;
1607
- height: auto;
1608
- float: none;
1609
- }
1610
-
1611
- #side-info-column .postbox .inside {
1612
- margin: 0;
1613
- padding: 0;
1614
- }
1615
-
1616
- #minor-publishing,
1617
- .misc-pub-section,
1618
- #submitdiv,
1619
- #submitdiv h3 {
1620
- background: none !important;
1621
- border: none;
1622
- margin: 0;
1623
- }
1624
-
1625
- #submitdiv h3 span {
1626
- font-family: sans-serif;
1627
- font-size: 16px;
1628
- }
1629
-
1630
- .inner-sidebar #side-sortables,
1631
- .columns-2 .inner-sidebar #side-sortables {
1632
- margin: 0;
1633
- padding: 0;
1634
- width: auto;
1635
- }
1636
-
1637
- table {
1638
- page-break-inside: auto;
1639
- }
1640
-
1641
- tr textarea {
1642
- overflow: visible;
1643
- }
1644
- }
1645
 
1646
  /* !HiDPI Displays */
1647
- @media print,
1648
- (-o-min-device-pixel-ratio: 5/4),
1649
- (-webkit-min-device-pixel-ratio: 1.25),
1650
- (min-resolution: 120dpi) {
1651
-
1652
- /* Interface icons */
1653
- .vfb-interface-icon {
1654
- top: 5px;
1655
- background-image: url( '../img/vfb-interface-icons-2x.png?d=20130712' );
1656
- background-size: cover;
1657
- }
1658
-
1659
- /* Form items */
1660
- .vfb-draggable-form-items b {
1661
- background-image: url( '../img/vfb-form-items-2x.png?d=20130712' );
1662
- background-size: cover;
1663
- }
1664
-
1665
- .vfb-add-options-group .vfb-interface-plus {
1666
- top: 5px;
1667
- }
1668
-
1669
- .addEmail,
1670
- .deleteEmail {
1671
- top: 28px;
1672
- }
1673
-
1674
- /* Field Item arrows */
1675
- .item-edit {
1676
- background-image: url('../img/arrows-2x.png?d=20130611');
1677
- background-size: 15px 123px;
1678
- }
1679
-
1680
- /* Blue Admin style */
1681
- .admin-color-classic .item-edit {
1682
- background-image: url('../img/arrows-vs-2x.png?d=20130611');
1683
- background-size: 15px 123px;
1684
- }
1685
-
1686
- .item-edit:hover{
1687
- background-image: url('../img/arrows-dark-2x.png?d=20130611');
1688
- background-size: 15px 123px;
1689
- }
1690
-
1691
- /* Blue Admin style */
1692
- .admin-color-classic .item-edit:hover {
1693
- background-image: url('../img/arrows-dark-vs-2x.png?d=20130611');
1694
- background-size: 15px 123px;
1695
- }
1696
-
1697
- .item-edit.opened{
1698
- background-image: url('../img/arrows-2x.png?d=20130611');
1699
- background-size: 15px 123px;
1700
- }
1701
-
1702
- /* Blue Admin style */
1703
- .admin-color-classic .item-edit.opened {
1704
- background-image: url('../img/arrows-vs-2x.png?d=20130611');
1705
- background-size: 15px 123px;
1706
- }
1707
-
1708
- .item-edit.opened:hover{
1709
- background-image: url('../img/arrows-dark-2x.png?d=20130611');
1710
- background-size: 15px 123px;
1711
- }
1712
-
1713
- /* Blue Admin style */
1714
- .admin-color-classic .item-edit.opened:hover {
1715
- background-image: url('../img/arrows-dark-vs-2x.png?d=20130611');
1716
- background-size: 15px 123px;
1717
- }
1718
-
1719
- /* Form Settings arrow */
1720
- .button-icon.vfb-small-arrow{
1721
- background-image: url('../img/arrows-2x.png?d=20130611');
1722
- background-size: 15px 123px;
1723
- }
1724
-
1725
- /* Blue Admin style */
1726
- .admin-color-classic .button-icon.vfb-small-arrow {
1727
- background-image: url('../img/arrows-vs-2x.png?d=20130611');
1728
- background-size: 15px 123px;
1729
- }
1730
-
1731
- .current .button-icon.vfb-small-arrow{
1732
- background-image: url('../img/arrows-2x.png?d=20130611');
1733
- background-size: 15px 123px;
1734
- }
1735
-
1736
- /* Blue Admin style */
1737
- .admin-color-classic .current .button-icon.vfb-small-arrow {
1738
- background-image: url('../img/arrows-vs.png?d=20130611');
1739
- background-size: 15px 123px;
1740
- }
1741
- }
1
  /* VFB Pro call to action */
2
  .vfb-pro-call-to-action {
3
+ padding: 5px 0;
4
+ text-align: center; }
5
+
6
+ .vfb-btn {
7
+ display: inline-block;
8
+ *display: inline;
9
+ /* IE7 inline-block hack */
10
+ *zoom: 1;
11
+ padding: 15px 10px;
12
+ margin-bottom: 0;
13
+ line-height: 20px;
14
+ text-align: center;
15
+ vertical-align: middle;
16
+ cursor: pointer;
17
+ color: #333333;
18
+ font-size: 21px;
19
+ font-weight: 500;
20
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
21
+ background-color: #f5f5f5;
22
+ background-repeat: repeat-x;
23
+ border-color: #e6e6e6 #e6e6e6 #bfbfbf;
24
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
25
+ *background-color: #e6e6e6;
26
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
27
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
28
+ border: 1px solid #cccccc;
29
+ *border: 0;
30
+ border-bottom-color: #b3b3b3;
31
+ -webkit-border-radius: 6px;
32
+ -moz-border-radius: 6px;
33
+ border-radius: 6px;
34
+ *margin-left: .3em;
35
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
36
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
37
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
38
+ text-decoration: none; }
39
+
40
+ .vfb-btn:hover,
41
+ .vfb-btn:focus {
42
+ color: #333333;
43
+ text-decoration: none;
44
+ background-position: 0 -15px;
45
+ -webkit-transition: background-position 0.1s linear;
46
+ -moz-transition: background-position 0.1s linear;
47
+ -o-transition: background-position 0.1s linear;
48
+ transition: background-position 0.1s linear; }
49
+
50
+ .vfb-btn:focus {
51
+ outline: thin dotted #333;
52
+ outline: 5px auto -webkit-focus-ring-color;
53
+ outline-offset: -2px; }
54
+
55
+ .vfb-btn.active,
56
+ .vfb-btn:active {
57
+ background-image: none;
58
+ outline: 0;
59
+ -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
60
+ -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
61
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }
62
+
63
+ .vfb-btn-primary.active {
64
+ color: rgba(255, 255, 255, 0.75); }
65
+
66
+ .vfb-btn-primary {
67
+ color: #ffffff;
68
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
69
+ background-color: #006dcc;
70
+ background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
71
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
72
+ background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
73
+ background-image: -o-linear-gradient(top, #0088cc, #0044cc);
74
+ background-image: linear-gradient(to bottom, #0088cc, #0044cc);
75
+ background-repeat: repeat-x;
76
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
77
+ border-color: #0044cc #0044cc #002a80;
78
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
79
+ *background-color: #0044cc;
80
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
81
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }
82
+
83
+ .vfb-btn-primary:hover,
84
+ .vfb-btn-primary:focus,
85
+ .vfb-btn-primary:active,
86
+ .vfb-btn-primary.active,
87
+ .vfb-btn-primary.disabled,
88
+ .vfb-btn-primary[disabled] {
89
+ color: #ffffff;
90
+ background-color: #0044cc;
91
+ *background-color: #003bb3; }
92
+
93
+ .vfb-btn-primary:active,
94
+ .vfb-btn-primary.active {
95
+ background-color: #003399 \9; }
96
+
97
+ .vfb-btn-inverse {
98
+ background-color: #363636;
99
+ background-repeat: repeat-x;
100
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
101
+ color: #FFFFFF;
102
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); }
103
+
104
+ .vfb-btn-inverse:hover,
105
+ .vfb-btn-inverse:focus,
106
+ .vfb-btn-inverse:active,
107
+ .vfb-btn-inverse.active,
108
+ .vfb-btn-inverse.disabled,
109
+ .vfb-btn-inverse[disabled] {
110
+ background-color: #222222;
111
+ color: #FFFFFF; }
112
+
113
+ .vfb-pro-call-to-action .cta-sign-up {
114
+ color: #fff;
115
+ display: block;
116
+ font-size: 24px;
117
+ font-weight: bold;
118
+ text-align: center;
119
+ text-decoration: none;
120
+ text-shadow: 1px 1px 1px #2b658c;
121
+ width: 100%;
122
+ line-height: 22px; }
123
+
124
+ .vfb-pro-call-to-action .cta-price {
125
+ color: #ace7ff;
126
+ display: block;
127
+ font-size: 12px;
128
+ font-weight: normal;
129
+ line-height: 20px;
130
+ text-align: center;
131
+ text-decoration: none;
132
+ width: 100%;
133
+ line-height: 20px; }
134
+
135
+ .vfb-pro-upgrade {
136
+ display: inline;
137
+ float: left;
138
+ padding: 10px;
139
+ margin-bottom: 20px;
140
+ background-color: #d3e7ee;
141
+ border: 1px solid #21759b;
142
+ border-radius: 5px; }
143
+
144
+ .rtl .vfb-pro-upgrade {
145
+ float: right; }
146
+
147
+ .vfb-pro-upgrade h2,
148
+ .wrap .vfb-pro-upgrade h2 {
149
+ font-size: 23px;
150
+ font-weight: 500;
151
+ padding: 5px 0;
152
+ text-align: center; }
153
+
154
+ .vfb-pro-upgrade h2 a {
155
+ text-decoration: none; }
156
+
157
+ .vfb-pro-upgrade ul {
158
+ list-style: outside;
159
+ margin-left: 10px; }
160
+
161
+ .rtl .vfb-pro-upgrade ul {
162
+ margin-left: 0;
163
+ margin-right: 10px; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
 
165
  /* !Form View framework */
166
+ #vfb-form-builder-frame {
167
+ display: block;
168
+ margin: 0 -8px 0 290px; }
 
169
 
170
+ .rtl #vfb-form-builder-frame {
171
+ margin: 0 290px 0 -8px; }
 
172
 
173
  #vfb-form-builder-frame:after,
174
  #form-editor-header .vfb-major-publishing-actions:after,
175
  #form-editor-footer .vfb-major-publishing-actions:after,
176
  #vfb-form-builder-frame .menu-item-settings:after,
177
  #vfb-form-list:after,
178
+ .option:after {
179
+ display: block;
180
+ visibility: hidden;
181
+ clear: both;
182
+ height: 0;
183
+ content: "."; }
184
+
185
+ #vfb-form-builder-sidebar {
186
+ clear: both;
187
+ width: 281px; }
188
+
189
+ #vfb-form-builder-management {
190
+ position: relative;
191
+ margin-right: 10px; }
192
+
193
+ .rtl #vfb-form-builder-management {
194
+ margin-right: 0;
195
+ margin-left: 10px; }
196
+
197
+ #vfb-form-builder-management .form-edit {
198
+ margin-bottom: 20px;
199
+ border: 1px solid #dfdfdf;
200
+ border-radius: 3px; }
201
+
202
+ /* Blue Admin style */
203
+ .admin-color-classic #vfb-form-builder-management .form-edit {
204
+ border-color: #D0DFE9; }
 
 
 
 
 
 
205
 
206
  /* !Form Editor Header/Footer */
207
  #form-editor-header,
208
+ #form-editor-footer {
209
+ padding: 0 10px;
210
+ background-color: #f1f1f1; }
211
+
212
+ #form-editor-footer {
213
+ border-top: 1px solid #dfdfdf; }
214
+
215
+ /* Blue Admin style */
216
+ .admin-color-classic #form-editor-header,
217
+ .admin-color-classic #form-editor-footer {
218
+ background-color: #F5FAFD; }
219
+
220
+ .admin-color-class #form-editor-footer {
221
+ border-top-color: #D0DFE9; }
222
+
223
+ .vfb-major-publishing-actions {
224
+ clear: both;
225
+ padding: 3px 0 5px; }
226
+
227
+ .vfb-major-publishing-actions .publishing-action {
228
+ float: right;
229
+ margin: 5px 0 1px;
230
+ text-align: right;
231
+ line-height: 23px; }
232
+
233
+ #form-editor-header .publishing-action {
234
+ margin-top: 12px; }
 
 
 
 
 
 
 
235
 
236
  /* !Subnavigation links */
237
+ .sub-navigation {
238
+ float: none;
239
+ margin: 8px 0 5px;
240
+ padding: 0;
241
+ list-style: none;
242
+ white-space: nowrap;
243
+ font-size: 12px; }
244
+
245
+ .sub-navigation li {
246
+ display: inline;
247
+ margin: 0;
248
+ padding: 0; }
249
+
250
+ .sub-navigation a {
251
+ padding: 0.2em;
252
+ text-decoration: none;
253
+ line-height: 2; }
254
+
255
+ .sub-navigation a.current {
256
+ border: medium none;
257
+ background: none;
258
+ color: black;
259
+ font-weight: bold; }
260
+
261
+ .sub-navigation a:hover {
262
+ color: #d54e21; }
 
 
 
 
 
263
 
264
  /* Form Box view */
265
  #vfb-sidebar,
266
+ #vfb-main {
267
+ float: left;
268
+ margin: 10px 0;
269
+ width: 280px; }
270
+
271
+ .rtl #vfb-sidebar,
272
+ .rtl #vfb-main {
273
+ float: right; }
274
+
275
+ #vfb-main {
276
+ width: auto; }
277
+
278
+ #vfb-main.vfb-order-type-list {
279
+ width: 100%; }
280
+
281
+ #vfb-main p a,
282
+ #vfb-main h3 a {
283
+ text-decoration: none; }
284
+
285
+ #vfb-main .submitdelete {
286
+ color: #BC0B0B;
287
+ text-decoration: none; }
288
+
289
+ #vfb-main .submitdelete:hover {
290
+ color: red; }
291
+
292
+ #vfb-sidebar {
293
+ margin-left: -300px; }
294
+
295
+ .rtl #vfb-sidebar {
296
+ margin-left: 0;
297
+ margin-right: -300px; }
298
+
299
+ #vfb-form-list {
300
+ display: block;
301
+ margin-left: 300px; }
302
+
303
+ .rtl #vfb-form-list {
304
+ margin-left: 0;
305
+ margin-right: 300px; }
 
 
 
 
 
 
 
 
 
306
 
307
  /* !Form Boxes */
308
+ .vfb-box {
309
+ position: relative;
310
+ float: left;
311
+ padding: 0 10px;
312
+ border: 1px solid #DFDFDF;
313
+ border-radius: 3px 3px 3px 3px;
314
+ background-color: #F5F5F5;
315
+ background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
316
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
317
+ background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
318
+ background: -o-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
319
+ background: -ms-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
320
+ background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
321
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5',GradientType=0 );
322
+ box-shadow: 0 1px 0 #FFFFFF inset;
323
+ line-height: 1.4em; }
324
+
325
+ .vfb-form-alpha-list {
326
+ width: 70%;
327
+ float: left;
328
+ padding-right: 20px; }
329
+
330
+ .rtl .vfb-form-alpha-list {
331
+ float: right;
332
+ padding-right: 0;
333
+ padding-left: 20px; }
334
+
335
+ .vfb-form-alpha-list hr {
336
+ display: block;
337
+ margin: 1em 0;
338
+ padding: 0;
339
+ height: 1px;
340
+ border: 0;
341
+ border-top: 1px solid #ccc; }
342
+
343
+ .vfb-form-alpha-group .letter,
344
+ .wrap h2.letter {
345
+ float: left;
346
+ padding: 0;
347
+ color: #666;
348
+ font-size: 14px;
349
+ line-height: 17px; }
350
+
351
+ .vfb-form-alpha-form {
352
+ display: block;
353
+ margin: 10px 0;
354
+ padding-left: 150px;
355
+ width: auto; }
356
+
357
+ .vfb-form-alpha-form h3 {
358
+ float: left;
359
+ margin: 0;
360
+ width: 50%;
361
+ word-wrap: break-word;
362
+ font-size: 17px; }
363
+
364
+ .vfb-form-alpha-form .vfb-publishing-actions,
365
+ .vfb-form-alpha-form .vfb-form-meta {
366
+ float: left;
367
+ width: 20%;
368
+ text-align: center; }
369
+
370
+ .vfb-form-alpha-form .vfb-form-meta {
371
+ width: 30%; }
372
+
373
+ .vfb-form-alpha-form .vfb-publishing-actions p,
374
+ .vfb-form-alpha-form .vfb-form-meta p {
375
+ margin: 0; }
376
+
377
+ .vfb-form-alpha-form .vfb-form-meta,
378
+ .vfb-form-alpha-form .paypal {
379
+ float: left;
380
+ margin: 0;
381
+ text-align: left; }
382
+
383
+ .rtl .vfb-form-alpha-form .vfb-form-meta,
384
+ .rtl .vfb-form-alpha-form .paypal {
385
+ float: right;
386
+ text-align: right; }
387
+
388
+ .vfb-sortable-placeholder {
389
+ display: block;
390
+ height: 35px;
391
+ width: 400px;
392
+ margin: 8px;
393
+ border: 1px dashed #bbb;
394
+ background-color: #f5f5f5; }
395
+
396
+ #vfb-main .vfb-sortable-placeholder {
397
+ float: left;
398
+ margin: 8px;
399
+ height: 200px;
400
+ width: 210px; }
401
+
402
+ .rtl #vfb-main .vfb-sortable-placeholder {
403
+ float: right; }
404
+
405
+ #vfb-menu-to-edit .mjs-nestedSortable-error {
406
+ border-color: red;
407
+ background-color: #fbe3e4;
408
+ color: #8a1f11; }
409
+
410
+ .vfb-meta-entries-total span,
411
+ .vfb-meta-entries-total-today span {
412
+ font-size: 11px;
413
+ font-weight: bold;
414
+ height: 1.4em;
415
+ line-height: 1.4em;
416
+ min-width: .7em;
417
+ padding: 0 6px;
418
+ display: inline-block;
419
+ border-radius: 5px;
420
+ background-color: #bbb;
421
+ color: white;
422
+ text-align: center; }
423
+
424
+ .vfb-meta-entries-total:hover span,
425
+ .vfb-meta-entries-total-today:hover span {
426
+ background-color: #d54e21; }
427
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
  .fixed .column-entries,
429
  .fixed .column-form_id {
430
+ width: 8em; }
 
431
 
432
  strong .vfb-meta-entries-total span {
433
+ background-color: #21759B; }
 
434
 
435
  .entries-count-wrapper {
436
+ font-family: sans-serif;
437
+ min-width: 22px;
438
+ padding-bottom: 1px; }
 
439
 
440
  /* !New Form box */
441
+ #new-form {
442
+ margin: 8px 0;
443
+ padding-top: 10px;
444
+ width: 75px;
445
+ height: 105px;
446
+ text-align: center; }
447
+
448
+ #new-form a {
449
+ display: block;
450
+ width: auto;
451
+ text-decoration: none; }
452
+
453
+ #post-body {
454
+ padding: 10px;
455
+ background: white; }
 
 
456
 
457
  /* !Form Editor columns */
458
+ .vfb-postbox-container {
459
+ float: left;
460
+ margin: 0 8px;
461
+ width: 100%; }
 
462
 
463
+ .rtl .vfb-postbox-container {
464
+ float: right; }
 
465
 
466
+ #vfb-postbox-container-1 .postbox {
467
+ min-width: 281px; }
 
468
 
469
+ #vfb-postbox-container-2 {
470
+ min-width: 485px; }
 
471
 
472
+ #vfb-form-builder-frame.columns-1 {
473
+ margin-left: -8px; }
 
474
 
475
+ .rtl #vfb-form-builder-frame.columns-1 {
476
+ margin-left: 0;
477
+ margin-right: -8px; }
 
478
 
479
+ #vfb-form-builder-frame.columns-1 #vfb-postbox-container-1 {
480
+ float: none; }
 
481
 
482
+ #vfb-form-builder-frame.columns-1 #vfb-postbox-container-2 {
483
+ width: 99%; }
 
484
 
485
+ #vfb-form-builder-frame.columns-2 #vfb-postbox-container-3 {
486
+ display: none; }
 
487
 
488
  #vfb-form-builder-frame.columns-2 #vfb-postbox-container-1,
489
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-1 {
490
+ margin-left: -290px;
491
+ width: 281px; }
492
+
493
+ .rtl #vfb-form-builder-frame.columns-2 #vfb-postbox-container-1,
494
+ .rtl #vfb-form-builder-frame.columns-3 #vfb-postbox-container-1 {
495
+ margin-left: 0;
496
+ margin-right: -290px; }
497
+
498
+ #vfb-form-builder-frame.columns-3 #vfb-form-builder-management {
499
+ margin-right: 0; }
500
+
501
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-2 {
502
+ width: 30%; }
503
+
504
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3 {
505
+ display: inline;
506
+ margin-right: 0;
507
+ width: 46.5%; }
508
+
509
+ .rtl #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3 {
510
+ margin-right: 0;
511
+ margin-left: 0; }
512
+
513
+ #vfb-form-meta-preview iframe {
514
+ width: 100%;
515
+ height: 100%; }
 
 
 
 
 
 
 
516
 
517
  #vfb_form_media_button_tip input {
518
+ width: 100%;
519
+ border: 0;
520
+ padding: 6px;
521
+ font-family: Consolas, Monaco, monospace;
522
+ font-size: 12px; }
 
523
 
524
  /* !Form Editor Columns - One Column */
525
  @media only screen and (max-width: 799px) {
526
+ #vfb-form-builder-frame .vfb-postbox-container {
527
+ width: 100%; }
528
+ .columns-prefs .columns-prefs-3 {
529
+ display: none; } }
 
 
 
530
 
531
  /* !Form Editor Columns - Two Columns */
532
  @media only screen and (min-width: 800px) and (max-width: 1200px) {
533
+ #vfb-form-builder-frame .vfb-postbox-container {
534
+ width: 49.5%; }
535
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-2,
536
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3 {
537
+ width: 50.5%; }
538
+ #vfb-form-builder-frame.columns-1 .vfb-postbox-container {
539
+ width: 100%; } }
540
+
 
 
 
 
 
541
  /* !Form Editor Columns - Three Columns */
542
  @media only screen and (min-width: 1600px) {
543
+ #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3 {
544
+ width: 58%; } }
 
 
545
 
546
  /* !Field Item arrows */
547
  .item-edit {
548
+ position: absolute;
549
+ top: 3px;
550
+ right: -20px;
551
+ display: block;
552
+ overflow: hidden;
553
+ width: 30px;
554
+ height: 40px;
555
+ background: url("../img/arrows.png?d=20130703") no-repeat scroll 8px 10px transparent;
556
+ text-indent: -999em; }
557
+
558
+ /* Blue Admin style */
559
+ .admin-color-classic .item-edit {
560
+ background: url("../img/arrows-vs.png?d=20130703") no-repeat scroll 8px 10px transparent; }
561
+
562
+ .rtl .item-edit {
563
+ right: auto;
564
+ left: -20px; }
565
+
566
+ .item-edit:hover {
567
+ background: url("../img/arrows-dark.png?d=20130703") no-repeat scroll 8px 10px transparent; }
568
+
569
+ /* Blue Admin style */
570
+ .admin-color-classic .item-edit:hover {
571
+ background: url("../img/arrows-dark-vs.png?d=20130703") no-repeat scroll 8px 10px transparent; }
572
+
573
+ .item-edit.opened {
574
+ background: url("../img/arrows.png?d=20130703") no-repeat scroll 8px -25px transparent; }
575
+
576
+ /* Blue Admin style */
577
+ .admin-color-classic .item-edit.opened {
578
+ background: url("../img/arrows-vs.png?d=20130703") no-repeat scroll 8px -25px transparent; }
579
+
580
+ .item-edit.opened:hover {
581
+ background: url("../img/arrows-dark.png?d=20130703") no-repeat scroll 8px -25px transparent; }
582
+
583
+ /* Blue Admin style */
584
+ .admin-color-classic .item-edit.opened:hover {
585
+ background: url("../img/arrows-dark-vs.png?d=20130703") no-repeat scroll 8px -25px transparent; }
 
 
 
 
 
 
 
 
 
586
 
587
  /* !Field Item attribute input styles */
588
  .option .widefat,
589
  .options-other-show .widefat,
590
  .options-other-hide .widefat {
591
+ margin: 0 6px 7px 0;
592
+ width: 320px; }
 
593
 
594
+ .rtl .option .widefat,
595
+ .rtl .options-other-show .widefat,
596
+ .rtl .options-other-hide .widefat {
597
+ margin: 0 0 7px 6px; }
 
598
 
599
+ #form-settings .description-thin {
600
+ margin: 12px 10px 12px 0; }
 
601
 
602
+ .rtl #form-settings .description-thin {
603
+ margin: 12px 0 12px 10px; }
 
604
 
605
  .description-thin,
606
  .description-wide {
607
+ float: left;
608
+ margin-right: 10px; }
609
+
610
+ .rtl .description-thin,
611
+ .rtl .description-wide {
612
+ float: right;
613
+ margin-right: 0;
614
+ margin-left: 10px; }
615
+
616
+ .description-thin {
617
+ width: 190px;
618
+ height: 40px; }
619
+
620
+ .description-wide {
621
+ width: 390px; }
 
 
 
 
622
 
623
  /* Interface icons */
624
  .vfb-interface-icon {
625
+ position: absolute;
626
+ top: 4px;
627
+ right: 4px;
628
+ display: inline-block;
629
+ width: 16px;
630
+ height: 16px;
631
+ background-color: transparent;
632
+ background-image: url("../img/vfb-interface-icons.png?d=20130713");
633
+ background-repeat: no-repeat;
634
+ text-indent: -9999px; }
635
+
636
+ .vfb-interface-settings {
637
+ background-position: -32px 0; }
638
+
639
+ .vfb-interface-duplicate {
640
+ background-position: 0 0; }
641
+
642
+ .vfb-interface-trash {
643
+ background-position: -64px 0; }
644
+
645
+ .vfb-interface-conditional {
646
+ background-position: -224px 0; }
647
+
648
+ .vfb-interface-sort {
649
+ background-position: -128px 0; }
650
+
651
+ .vfb-interface-plus {
652
+ background-position: -160px 0; }
653
+
654
+ .vfb-interface-minus {
655
+ background-position: -192px 0; }
656
+
657
+ .vfb-interface-bulk-add {
658
+ background-position: -96px 0; }
659
+
660
+ .vfb-interface-plus,
661
+ .vfb-interface-minus {
662
+ top: 0; }
663
+
664
+ /* Form Settings add/delete emails */
665
+ .addEmail,
666
+ .deleteEmail {
667
+ top: 28px; }
668
+
669
+ .addEmail {
670
+ right: 55px; }
671
+
672
+ .rtl .addEmail {
673
+ right: auto;
674
+ left: 55px; }
675
+
676
+ .deleteEmail {
677
+ right: 30px; }
678
+
679
+ .rtl .deleteEmail {
680
+ right: auto;
681
+ left: 30px; }
682
+
683
+ /* Form item delete/sort options */
684
+ .deleteOption,
685
+ .vfb-interface-sort,
686
+ .addCondition,
687
+ .deleteCondition {
688
+ top: 3px; }
689
+
690
+ .deleteOption,
691
+ .addCondition {
692
+ right: 25px; }
693
+
694
+ .rtl .deleteOption,
695
+ .rtl .addCondition {
696
+ right: auto;
697
+ left: 25px; }
698
+
699
+ .vfb-interface-sort,
700
+ .deleteCondition {
701
+ right: 0; }
702
+
703
+ .rtl .vfb-interface-sort,
704
+ .rtl .deleteCondition {
705
+ right: auto;
706
+ left: 0; }
707
+
708
+ .vfb-interface-sort:hover {
709
+ cursor: pointer; }
710
 
711
  .option {
712
+ float: left;
713
+ width: 97%;
714
+ position: relative; }
715
+
716
+ .rtl .option {
717
+ float: right; }
718
+
719
+ #vfb-poststuff {
720
+ display: block;
721
+ margin-right: 300px; }
722
+
723
+ .rtl #vfb-poststuff {
724
+ margin-right: 0;
725
+ margin-left: 300px; }
726
+
727
+ #vfb-entries-body-content {
728
+ float: left;
729
+ width: 100%; }
730
+
731
+ .rtl #vfb-entries-body-content {
732
+ float: right; }
733
+
734
+ .metabox-holder #vfb-entries-body-content h3 {
735
+ font-weight: bold;
736
+ font-family: sans-serif; }
737
+
738
+ #entry-edit #side-info-column {
739
+ margin-right: -300px; }
740
+
741
+ .rtl #entry-edit #side-info-column {
742
+ margin-right: 0;
743
+ margin-left: -300px; }
744
+
745
+ label.error {
746
+ display: block;
747
+ color: red; }
 
 
 
 
 
 
 
 
 
 
748
 
749
  #visual-form-builder-update input.error,
750
  #visual-form-builder-update textarea.error,
751
+ #visual-form-builder-update select.error {
752
+ border: 1px solid red; }
 
753
 
754
  #vfb-menu-to-edit .menu-item-settings {
755
+ width: 402px; }
 
756
 
757
  .vfb-menu-item-handle {
758
+ background: white;
759
+ border: 1px solid #DFDFDF;
760
+ border-radius: 3px;
761
+ height: auto;
762
+ line-height: 35px;
763
+ overflow: hidden;
764
+ padding: 10px 15px;
765
+ position: relative;
766
+ text-shadow: 0 1px 0 #FFFFFF;
767
+ width: 382px;
768
+ word-wrap: break-word;
769
+ cursor: move; }
770
+
771
+ .vfb-menu-item-handle:hover {
772
+ border-color: #999; }
773
+
774
+ /* Blue Admin style */
775
+ .admin-color-classic .vfb-menu-item-handle {
776
+ background: #F5FAFD;
777
+ box-shadow: 0 1px 0 #FFFFFF inset;
778
+ border-color: #D0DFE9; }
779
+
780
+ .rtl .vfb-menu-item-handle {
781
+ padding-left: 0;
782
+ padding-right: 10px; }
783
+
784
+ .vfb-menu-item-type-fieldset,
785
+ .vfb-menu-item-type-verification,
786
+ #form-element-fieldset {
787
+ background: #e3e3e3;
788
+ box-shadow: 0 1px 0 #e3e3e3 inset; }
789
+
790
+ /* Blue Admin style */
791
+ .admin-color-classic .vfb-menu-item-type-fieldset,
792
+ .admin-color-classic .vfb-menu-item-type-verification,
793
+ .admin-color-classic #form-element-fieldset {
794
+ background: #e2f3ff;
795
+ box-shadow: 0 1px 0 #FFFFFF inset; }
796
+
797
+ .vfb-menu-item-handle .item-title {
798
+ min-height: 20px;
799
+ display: block;
800
+ font-size: 12px;
801
+ font-weight: bold;
802
+ line-height: 20px;
803
+ margin-right: 13em; }
804
+
805
+ .rtl .vfb-menu-item-handle .item-title {
806
+ margin-right: 0;
807
+ margin-left: 13em; }
808
+
809
+ .vfb-menu-item-active .vfb-menu-item-handle {
810
+ border-bottom-left-radius: 0;
811
+ border-bottom-right-radius: 0; }
812
+
813
+ .sender-labels {
814
+ width: 80px; }
815
+
816
+ .is-field-required {
817
+ color: #BC1212; }
818
+
819
+ #form-details-nav {
820
+ padding-top: 10px;
821
+ font-size: 1.0em; }
822
+
823
+ #form-details-nav a,
824
+ .charts-nav a {
825
+ padding: 5px 10px;
826
+ text-decoration: none;
827
+ font-weight: bold; }
828
+
829
+ #form-details-nav a.current,
830
+ .charts-nav a.current {
831
+ height: 40px;
832
+ border-color: #dfdfdf;
833
+ border-radius: 5px;
834
+ background-color: #777;
835
+ background-image: -ms-linear-gradient(bottom, #6d6d6d, #808080);
836
+ background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080);
837
+ background-image: -o-linear-gradient(bottom, #6d6d6d, #808080);
838
+ background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080));
839
+ background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080);
840
+ background-image: linear-gradient(bottom, #6d6d6d, #808080);
841
+ color: white;
842
+ text-shadow: 0 -1px 0 #333333; }
 
 
 
 
 
 
 
 
 
 
 
 
 
843
 
844
  /* !Form Settings - Confirmation */
845
  .form-details,
846
  #form-success-message-text,
847
  #form-success-message-page,
848
+ #form-success-message-redirect {
849
+ display: none; }
850
+
851
+ .form-details-current, .active {
852
+ display: block; }
853
+
854
+ #confirmation-message textarea,
855
+ #notification textarea {
856
+ width: 100%;
857
+ height: 10em;
858
+ font-family: Consolas,Monaco,monospace; }
859
+
860
+ #form-success-message-page,
861
+ #form-success-message-redirect {
862
+ margin-top: 10px;
863
+ width: 100%; }
864
+
865
+ .post-body-plain ol li {
866
+ list-style: decimal; }
 
 
 
 
 
867
 
868
  #vfb-upgrade-column {
869
+ display: inline;
870
+ float: left;
871
+ width: auto; }
 
872
 
873
+ .rtl #vfb-upgrade-column {
874
+ float: right; }
 
875
 
876
  ul#promote-vfb {
877
+ margin-left: 20px;
878
+ list-style: disc; }
 
879
 
880
+ .rtl ul#promote-vfb {
881
+ margin-left: auto;
882
+ margin-right: 20px; }
 
883
 
884
  #promote-vfb li {
885
+ text-align: left; }
 
886
 
887
+ .rtl #promote-vfb li {
888
+ text-align: right; }
 
889
 
890
  .menu .ui-nestedSortable-error {
891
+ background-color: #fbe3e4;
892
+ border-color: red;
893
+ color: #8a1f11; }
894
+
895
+ ul#vfb-menu-to-edit ul {
896
+ margin: 0 0 0 25px;
897
+ padding: 0;
898
+ width: 98%;
899
+ list-style-type: none; }
900
+
901
+ #vfb-menu-to-edit {
902
+ margin-top: 0;
903
+ padding: 1em 0; }
904
+
905
+ #vfb-fieldset-first-warning {
906
+ display: none; }
 
 
 
907
 
908
  .ui-state-disabled,
909
  .ui-state-disabled dl,
910
  .ui-state-disabled dt,
911
  .form-item.ui-state-disabled {
912
+ opacity: 100;
913
+ filter: alpha(Opacity=100);
914
+ background-image: none; }
915
+
916
+ .ui-state-disabled .vfb-menu-item-handle,
917
+ .ui-state-disabled .menu-item-handle {
918
+ background: #dfdfdf;
919
+ box-shadow: none;
920
+ cursor: default; }
921
+
922
+ .vfb-details {
923
+ margin-bottom: 10px;
924
+ padding: 0 10px;
925
+ border: 1px solid #ccc;
926
+ border-radius: 3px; }
927
+
928
+ .vfb-details.section {
929
+ width: 97.55%;
930
+ background-color: #efefef; }
931
+
932
+ .vfb-details .postbox {
933
+ min-height: 60px; }
934
+
935
+ #poststuff .vfb-details h2 {
936
+ margin-top: 0; }
937
+
938
+ #poststuff h3.section-heading {
939
+ padding-left: 0; }
 
 
 
 
 
 
 
940
 
941
  /* !Form Items */
942
+ #form-items .tabs-panel {
943
+ overflow: visible;
944
+ padding: 0.5em 0 0.5em 4px;
945
+ min-height: 325px;
946
+ height: auto; }
 
947
 
948
+ .rtl #form-items .tabs-panel {
949
+ padding: 0.5em 4px 0.5em 0; }
 
950
 
951
  ul.vfb-fields-col-1,
952
+ ul.vfb-fields-col-2 {
953
+ float: left;
954
+ width: 50%;
955
+ list-style: none; }
956
+
957
+ .rtl ul.vfb-fields-col-1,
958
+ .rtl ul.vfb-fields-col-2 {
959
+ float: right; }
960
+
961
+ #vfb-form-builder-frame.columns-1 #vfb-postbox-container-1 #form-items .tabs-panel {
962
+ height: auto; }
963
+
964
+ .vfb-draggable-form-items {
965
+ position: relative;
966
+ position: relative;
967
+ display: block;
968
+ margin-right: 8px;
969
+ padding: 4px 0 4px 34px;
970
+ border: 1px solid #bbb;
971
+ border-radius: 3px;
972
+ color: #464646;
973
+ text-align: left;
974
+ text-decoration: none;
975
+ font-size: 12px; }
976
+
977
+ .rtl .vfb-draggable-form-items {
978
+ margin-right: 0;
979
+ margin-left: 8px;
980
+ padding: 4px 34px 4px 10px; }
981
+
982
+ .vfb-draggable-form-items:hover {
983
+ border-color: #aaaaaa; }
984
+
985
+ .vfb-draggable-form-items b {
986
+ position: absolute;
987
+ left: 8px;
988
+ display: inline-block;
989
+ width: 16px;
990
+ height: 16px;
991
+ background-color: transparent;
992
+ background-image: url("../img/vfb-form-items.png?d=20130712");
993
+ background-repeat: no-repeat;
994
+ line-height: 16px; }
995
+
996
+ .rtl .vfb-draggable-form-items b {
997
+ left: auto;
998
+ right: 8px; }
999
+
1000
+ #form-element-address b {
1001
+ background-position: -128px 0; }
1002
+
1003
+ #form-element-autocomplete b {
1004
+ background-position: -384px 0; }
1005
+
1006
+ #form-element-checkbox b {
1007
+ background-position: -672px 0; }
1008
+
1009
+ #form-element-color b {
1010
+ background-position: 0 0; }
1011
+
1012
+ #form-element-currency b {
1013
+ background-position: -64px 0; }
1014
+
1015
+ #form-element-datepicker b {
1016
+ background-position: -224px 0; }
1017
+
1018
+ #form-element-digits b {
1019
+ background-position: -832px 0; }
1020
+
1021
+ #form-element-email b {
1022
+ background-position: -160px 0; }
1023
+
1024
+ #form-element-file b {
1025
+ background-position: -512px 0; }
1026
+
1027
+ #form-element-hidden b {
1028
+ background-position: -544px 0; }
1029
+
1030
+ #form-element-html b {
1031
+ background-position: -800px 0; }
1032
+
1033
+ #form-element-instructions b {
1034
+ background-position: -256px 0; }
1035
+
1036
+ #form-element-ip b {
1037
+ background-position: -448px 0; }
1038
+
1039
+ #form-element-max b {
1040
+ background-position: -576px 0; }
1041
+
1042
+ #form-element-min b {
1043
+ background-position: -608px 0; }
1044
+
1045
+ #form-element-name b {
1046
+ background-position: -320px 0; }
1047
+
1048
+ #form-element-pagebreak b {
1049
+ background-position: -768px 0; }
1050
+
1051
+ #form-element-password b {
1052
+ background-position: -352px 0; }
1053
+
1054
+ #form-element-phone b {
1055
+ background-position: -96px 0; }
1056
+
1057
+ #form-element-radio b {
1058
+ background-position: -704px 0; }
1059
+
1060
+ #form-element-range b {
1061
+ background-position: -640px 0; }
1062
+
1063
+ #form-element-select b {
1064
+ background-position: -416px 0; }
1065
+
1066
+ #form-element-text b {
1067
+ background-position: -736px 0; }
1068
+
1069
+ #form-element-textarea b {
1070
+ background-position: -32px 0; }
1071
+
1072
+ #form-element-time b {
1073
+ background-position: -192px 0; }
1074
+
1075
+ #form-element-username b {
1076
+ background-position: -288px 0; }
1077
+
1078
+ #form-element-url b {
1079
+ background-position: -480px 0; }
1080
+
1081
+ .static-vars-inactive {
1082
+ display: none; }
1083
+
1084
+ .static-vars-active {
1085
+ display: block; }
1086
 
1087
  /* !Form Settings buttons */
1088
  .vfb-button {
1089
+ position: relative;
1090
+ display: inline-block;
1091
+ overflow: visible;
1092
+ margin: 0;
1093
+ padding: 0.5em 2.5em 0.5em 1em;
1094
+ outline: none;
1095
+ border: 1px solid #d4d4d4;
1096
+ border-radius: 0.2em;
1097
+ background-color: #f5f5f5;
1098
+ color: #333;
1099
+ text-decoration: none;
1100
+ white-space: nowrap;
1101
+ font: 12px/normal sans-serif;
1102
+ cursor: pointer;
1103
+ zoom: 1;
1104
+ -webkit-background-clip: padding;
1105
+ -moz-background-clip: padding;
1106
+ -o-background-clip: padding-box;
1107
+ *display: inline; }
1108
+
1109
+ .vfb-button:hover,
1110
+ .vfb-button:active,
1111
+ .vfb-button.current {
1112
+ border-color: #929292;
1113
+ border-bottom-color: #929292;
1114
+ background-color: #eeeeee;
1115
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eeeeee), to(#cccccc));
1116
+ background-image: -moz-linear-gradient(#eeeeee, #cccccc);
1117
+ background-image: -o-linear-gradient(#eeeeee, #cccccc);
1118
+ background-image: linear-gradient(#eeeeee, #cccccc);
1119
+ color: #000; }
1120
+
1121
+ .vfb-button.current {
1122
+ font-weight: bold; }
1123
+
1124
+ .vfb-button::-moz-focus-inner {
1125
+ padding: 0;
1126
+ border: 0; }
1127
+
1128
+ .vfb-button.vfb-settings:hover,
1129
+ .vfb-button.vfb-settings:focus,
1130
+ .vfb-button.vfb-settings:active {
1131
+ color: #3072b3; }
1132
+
1133
+ .vfb-button.vfb-delete:hover,
1134
+ .vfb-button.vfb-delete:focus,
1135
+ .vfb-button.vfb-delete:active {
1136
+ color: #900; }
1137
+
1138
+ .vfb-button.vfb-duplicate:hover,
1139
+ .vfb-button.vfb-duplicate:focus,
1140
+ .vfb-button.vfb-duplicate:active {
1141
+ color: #008e0d; }
1142
+
1143
+ .vfb-button-group {
1144
+ display: inline-block;
1145
+ margin: 10px 0;
1146
+ list-style: none; }
1147
+
1148
+ .rtl .vfb-button-group {
1149
+ margin-left: -2px; }
1150
+
1151
+ .vfb-button-group .vfb-button {
1152
+ float: left;
1153
+ margin-right: 5px; }
1154
+
1155
+ .rtl .vfb-button-group .vfb-button {
1156
+ float: right;
1157
+ margin-right: 0;
1158
+ margin-left: 5px; }
1159
+
1160
+ .vfb-button-group .button-primary {
1161
+ margin-top: 2px; }
1162
+
1163
+ .vfb-item-actions {
1164
+ margin-right: 10px;
1165
+ margin-bottom: 10px;
1166
+ text-align: center; }
1167
+
1168
+ .rtl .vfb-item-actions {
1169
+ margin-right: 0;
1170
+ margin-left: 10px; }
1171
+
1172
+ .vfb-item-actions .vfb-delete {
1173
+ float: left; }
1174
+
1175
+ .rtl .vfb-item-actions .vfb-delete {
1176
+ float: right; }
1177
+
1178
+ .vfb-item-actions .vfb-conditional-fields {
1179
+ float: right; }
1180
+
1181
+ .rtl .vfb-item-actions .vfb-conditional-fields {
1182
+ float: left; }
1183
+
1184
+ .vfb-item-actions .vfb-delete,
1185
+ .vfb-item-actions .vfb-duplicate,
1186
+ .vfb-item-actions .vfb-conditional-fields {
1187
+ margin-top: 10px; }
1188
+
1189
+ #form-settings {
1190
+ display: none;
1191
+ width: 100%;
1192
+ max-width: 460px;
1193
+ margin-bottom: 15px;
1194
+ border-bottom: 1px solid #D6D6D6; }
1195
+
1196
+ #form-settings.current {
1197
+ display: block; }
1198
+
1199
+ .form-details {
1200
+ padding: 20px;
1201
+ background: white;
1202
+ background: rgba(255, 255, 255, 0.5);
1203
+ border-left: 1px solid #D6D6D6;
1204
+ border-right: 1px solid #D6D6D6; }
1205
+
1206
+ .form-details.on {
1207
+ display: block; }
1208
+
1209
+ .settings-links {
1210
+ position: relative;
1211
+ z-index: 1;
1212
+ display: block;
1213
+ padding: 5px 15px;
1214
+ height: 25px;
1215
+ background: #f5f5f5;
1216
+ border-top: 1px solid #cccccc;
1217
+ border-left: 1px solid #cccccc;
1218
+ border-right: 1px solid #cccccc;
1219
+ color: #333333;
1220
+ text-decoration: none;
1221
+ text-transform: uppercase;
1222
+ text-shadow: 0 1px 0 #FFFFFF;
1223
+ font-weight: normal;
1224
+ font-size: 15px;
1225
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
1226
+ line-height: 25px;
1227
+ cursor: pointer; }
1228
+
1229
+ .settings-links .vfb-large-arrow {
1230
+ position: absolute;
1231
+ top: 16px;
1232
+ right: 25px;
1233
+ width: 5px;
1234
+ height: 0;
1235
+ z-index: 1; }
1236
+
1237
+ .settings-links .vfb-large-arrow:after {
1238
+ content: '';
1239
+ width: 0;
1240
+ height: 0;
1241
+ border-color: #ccc transparent;
1242
+ border-style: solid;
1243
+ border-width: 6px 6px 0;
1244
+ position: absolute;
1245
+ z-index: 1; }
1246
+
1247
+ .rtl .settings-links .vfb-large-arrow {
1248
+ right: auto;
1249
+ left: 13px; }
1250
+
1251
+ .settings-links.on {
1252
+ border-bottom: 1px solid #808080; }
1253
+
1254
+ .settings-links:hover,
1255
+ .settings-links.on {
1256
+ background: #808080;
1257
+ color: #ffffff;
1258
+ text-shadow: 0 -1px 0 #333333; }
1259
+
1260
+ .settings-links:first-child {
1261
+ border-top-left-radius: 3px;
1262
+ border-top-right-radius: 3px; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1263
 
1264
  .vfb-notices {
1265
+ padding: 15px;
1266
+ margin-top: 10px;
1267
+ margin-bottom: 20px;
1268
+ border: 1px solid transparent;
1269
+ border-radius: 4px; }
1270
+
1271
  .vfb-notices.vfb-notice-success {
1272
+ background-color: #dff0d8;
1273
+ border-color: #d6e9c6;
1274
+ color: #3c763d; }
 
1275
 
1276
  .vfb-notices.vfb-notice-info {
1277
+ background-color: #d9edf7;
1278
+ border-color: #bce8f1;
1279
+ color: #31708f; }
 
1280
 
1281
  .vfb-notices.vfb-notice-warning {
1282
+ background-color: #fcf8e3;
1283
+ border-color: #faebcc;
1284
+ color: #8a6d3b; }
 
1285
 
1286
  .vfb-notices.vfb-notice-danger {
1287
+ background-color: #f2dede;
1288
+ border-color: #ebccd1;
1289
+ color: #a94442; }
 
1290
 
1291
  .vfb-notices h3 {
1292
+ margin-top: 0;
1293
+ color: inherit; }
 
1294
 
1295
  /* !Help tooltip popups */
1296
+ .vfb-tooltip {
1297
+ position: relative;
1298
+ float: right;
1299
+ margin-right: 2px;
1300
+ width: 16px;
1301
+ height: 16px;
1302
+ cursor: pointer; }
1303
+
1304
+ .rtl .vfb-tooltip {
1305
+ float: left;
1306
+ margin-right: 0;
1307
+ margin-left: 2px; }
1308
+
1309
+ .vfb-tooltip-popup {
1310
+ position: absolute;
1311
+ top: -40px;
1312
+ z-index: 200;
1313
+ display: none;
1314
+ padding: 5px 20px;
1315
+ width: 250px;
1316
+ border: 2px solid #333;
1317
+ border-radius: 5px;
1318
+ background: #222;
1319
+ box-shadow: 0 0 7px black;
1320
+ color: white;
1321
+ text-indent: 0;
1322
+ font-style: normal; }
1323
+
1324
+ .vfb-tooltip-popup h3,
1325
+ .vfb-tooltip .vfb-tooltip-popup h3 {
1326
+ margin: 5px 0;
1327
+ padding: 0 0 6px 0;
1328
+ border-bottom: 1px solid white;
1329
+ color: white;
1330
+ font-weight: normal;
1331
+ font-size: 13px;
1332
+ font-family: sans-serif; }
1333
+
1334
+ .vfb-tooltip-popup p {
1335
+ margin-top: 1 0px;
1336
+ color: white;
1337
+ font-size: 12px; }
 
 
 
 
 
1338
 
1339
  /* !Bulk Add Options */
1340
  .vfb-add-options-group {
1341
+ display: inline-block;
1342
+ margin: 10px 0;
1343
+ list-style: none;
1344
+ text-align: center;
1345
+ width: 95%; }
 
1346
 
1347
+ .vfb-add-options-group .vfb-interface-plus {
1348
+ top: 4px; }
 
1349
 
1350
  /* !Import/Export */
1351
  .vfb-export-label {
1352
+ width: 10em;
1353
+ float: left; }
 
1354
 
1355
+ .rtl .vfb-export-label {
1356
+ float: right; }
 
1357
 
1358
  #vfb-export-entries-fields {
1359
+ height: 275px;
1360
+ width: 300px;
1361
+ overflow: auto;
1362
+ display: block;
1363
+ border: 1px solid #e8e8e8;
1364
+ border-radius: 3px;
1365
+ margin-left: 10em;
1366
+ padding: 5px;
1367
+ background: white; }
 
1368
 
1369
  #vfb-export-select-all,
1370
  #vfb-export-unselect-all {
1371
+ width: 150px;
1372
+ display: inline-block;
1373
+ text-align: left; }
 
 
 
 
 
 
1374
 
1375
+ #vfb-export-unselect-all {
1376
+ text-align: right;
1377
+ margin-left: 5px; }
1378
 
1379
  @media print {
1380
+ body * {
1381
+ float: none; }
1382
+ html,
1383
+ .wrap,
1384
+ #wpbody-content,
1385
+ #vfb-poststuff {
1386
+ background: none !important;
1387
+ padding: 0;
1388
+ margin: 0;
1389
+ height: auto; }
1390
+ #wpadminbar,
1391
+ #adminmenuwrap,
1392
+ #adminmenushadow,
1393
+ #adminmenuback,
1394
+ .screen-reader-shortcut,
1395
+ #screen-meta,
1396
+ #screen-meta-links,
1397
+ #wpfooter,
1398
+ #icon-options-general,
1399
+ .wrap h2,
1400
+ .view-entry,
1401
+ #major-publishing-actions,
1402
+ .clear {
1403
+ display: none; }
1404
+ #wpcontent,
1405
+ body #wpcontent {
1406
+ margin-left: 0;
1407
+ width: auto;
1408
+ height: auto; }
1409
+ #entry-edit h3 span {
1410
+ font-size: 23px;
1411
+ font-weight: normal; }
1412
+ #vfb-poststuff {
1413
+ page-break-after: auto; }
1414
+ #vfb-entries-body-content {
1415
+ width: 100%;
1416
+ height: auto;
1417
+ margin: 0 0 50px 0;
1418
+ padding: 0; }
1419
+ #side-info-column {
1420
+ width: 100%;
1421
+ height: auto;
1422
+ float: none; }
1423
+ #side-info-column .postbox .inside {
1424
+ margin: 0;
1425
+ padding: 0; }
1426
+ #minor-publishing,
1427
+ .misc-pub-section,
1428
+ #submitdiv,
1429
+ #submitdiv h3 {
1430
+ background: none !important;
1431
+ border: none;
1432
+ margin: 0; }
1433
+ #submitdiv h3 span {
1434
+ font-family: sans-serif;
1435
+ font-size: 16px; }
1436
+ .inner-sidebar #side-sortables,
1437
+ .columns-2 .inner-sidebar #side-sortables {
1438
+ margin: 0;
1439
+ padding: 0;
1440
+ width: auto; }
1441
+ table {
1442
+ page-break-inside: auto; }
1443
+ tr textarea {
1444
+ overflow: visible; } }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1445
 
1446
  /* !HiDPI Displays */
1447
+ @media print, (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
1448
+ /* Interface icons */
1449
+ .vfb-interface-icon {
1450
+ top: 5px;
1451
+ background-image: url("../img/vfb-interface-icons-2x.png?d=20130712");
1452
+ background-size: cover; }
1453
+ /* Form items */
1454
+ .vfb-draggable-form-items b {
1455
+ background-image: url("../img/vfb-form-items-2x.png?d=20130712");
1456
+ background-size: cover; }
1457
+ .vfb-add-options-group .vfb-interface-plus {
1458
+ top: 5px; }
1459
+ .addEmail,
1460
+ .deleteEmail {
1461
+ top: 28px; }
1462
+ /* Field Item arrows */
1463
+ .item-edit {
1464
+ background-image: url("../img/arrows-2x.png?d=20130611");
1465
+ background-size: 15px 123px; }
1466
+ /* Blue Admin style */
1467
+ .admin-color-classic .item-edit {
1468
+ background-image: url("../img/arrows-vs-2x.png?d=20130611");
1469
+ background-size: 15px 123px; }
1470
+ .item-edit:hover {
1471
+ background-image: url("../img/arrows-dark-2x.png?d=20130611");
1472
+ background-size: 15px 123px; }
1473
+ /* Blue Admin style */
1474
+ .admin-color-classic .item-edit:hover {
1475
+ background-image: url("../img/arrows-dark-vs-2x.png?d=20130611");
1476
+ background-size: 15px 123px; }
1477
+ .item-edit.opened {
1478
+ background-image: url("../img/arrows-2x.png?d=20130611");
1479
+ background-size: 15px 123px; }
1480
+ /* Blue Admin style */
1481
+ .admin-color-classic .item-edit.opened {
1482
+ background-image: url("../img/arrows-vs-2x.png?d=20130611");
1483
+ background-size: 15px 123px; }
1484
+ .item-edit.opened:hover {
1485
+ background-image: url("../img/arrows-dark-2x.png?d=20130611");
1486
+ background-size: 15px 123px; }
1487
+ /* Blue Admin style */
1488
+ .admin-color-classic .item-edit.opened:hover {
1489
+ background-image: url("../img/arrows-dark-vs-2x.png?d=20130611");
1490
+ background-size: 15px 123px; }
1491
+ /* Form Settings arrow */
1492
+ .button-icon.vfb-small-arrow {
1493
+ background-image: url("../img/arrows-2x.png?d=20130611");
1494
+ background-size: 15px 123px; }
1495
+ /* Blue Admin style */
1496
+ .admin-color-classic .button-icon.vfb-small-arrow {
1497
+ background-image: url("../img/arrows-vs-2x.png?d=20130611");
1498
+ background-size: 15px 123px; }
1499
+ .current .button-icon.vfb-small-arrow {
1500
+ background-image: url("../img/arrows-2x.png?d=20130611");
1501
+ background-size: 15px 123px; }
1502
+ /* Blue Admin style */
1503
+ .admin-color-classic .current .button-icon.vfb-small-arrow {
1504
+ background-image: url("../img/arrows-vs.png?d=20130611");
1505
+ background-size: 15px 123px; } }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/assets/css/visual-form-builder-admin.min.css CHANGED
@@ -1 +1 @@
1
- .vfb-btn,.vfb-btn-primary{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.vfb-btn,.vfb-interface-sort:hover{cursor:pointer}.vfb-pro-call-to-action{padding:5px 0;text-align:center}.vfb-btn{display:inline-block;padding:15px 10px;margin-bottom:0;line-height:20px;text-align:center;vertical-align:middle;color:#333;font-size:21px;font-weight:500;text-shadow:0 1px 1px rgba(255,255,255,.75);background-color:#f5f5f5;background-repeat:repeat-x;border:1px solid #ccc;border-bottom-color:#b3b3b3;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);text-decoration:none}.vfb-btn-inverse,.vfb-btn-primary{background-repeat:repeat-x;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vfb-btn:focus,.vfb-btn:hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.vfb-btn:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.vfb-btn.active,.vfb-btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.vfb-btn-primary{color:#fff;background-color:#006dcc;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25)}.vfb-btn-primary.active,.vfb-btn-primary.disabled,.vfb-btn-primary:active,.vfb-btn-primary:focus,.vfb-btn-primary:hover,.vfb-btn-primary[disabled]{color:#fff;background-color:#04c}.vfb-btn-primary.active,.vfb-btn-primary:active{background-color:#039\9}.vfb-btn-inverse{background-color:#363636;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#FFF}.vfb-btn-inverse.active,.vfb-btn-inverse.disabled,.vfb-btn-inverse:active,.vfb-btn-inverse:focus,.vfb-btn-inverse:hover,.vfb-btn-inverse[disabled]{background-color:#222;color:#FFF}.vfb-pro-call-to-action .cta-sign-up{color:#fff;display:block;font-size:24px;font-weight:700;text-align:center;text-decoration:none;text-shadow:1px 1px 1px #2b658c;width:100%;line-height:22px}.vfb-pro-call-to-action .cta-price{color:#ace7ff;display:block;font-size:12px;font-weight:400;text-align:center;text-decoration:none;width:100%;line-height:20px}.vfb-pro-upgrade{display:inline;float:left;padding:10px;margin-bottom:20px;background-color:#d3e7ee;border:1px solid #21759b;border-radius:5px}.rtl .vfb-pro-upgrade{float:right}.vfb-pro-upgrade h2,.wrap .vfb-pro-upgrade h2{font-size:23px;font-weight:500;padding:5px 0;text-align:center}.vfb-pro-upgrade h2 a{text-decoration:none}.vfb-pro-upgrade ul{list-style:outside;margin-left:10px}.rtl .vfb-pro-upgrade ul{margin-left:0;margin-right:10px}#vfb-form-builder-frame{display:block;margin:0 -8px 0 290px}.rtl #vfb-form-builder-frame{margin:0 290px 0 -8px}#form-editor-footer .vfb-major-publishing-actions:after,#form-editor-header .vfb-major-publishing-actions:after,#vfb-form-builder-frame .menu-item-settings:after,#vfb-form-builder-frame:after,#vfb-form-list:after,.option:after{display:block;visibility:hidden;clear:both;height:0;content:"."}#vfb-form-builder-sidebar{clear:both;width:281px}#vfb-form-builder-management{position:relative;margin-right:10px}.rtl #vfb-form-builder-management{margin-right:0;margin-left:10px}#vfb-form-builder-management .form-edit{margin-bottom:20px;border:1px solid #dfdfdf;border-radius:3px}.admin-color-classic #vfb-form-builder-management .form-edit{border-color:#D0DFE9}#form-editor-footer,#form-editor-header{padding:0 10px;background-color:#f1f1f1}#form-editor-footer{border-top:1px solid #dfdfdf}.admin-color-classic #form-editor-footer,.admin-color-classic #form-editor-header{background-color:#F5FAFD}.admin-color-class #form-editor-footer{border-top-color:#D0DFE9}.vfb-major-publishing-actions{clear:both;padding:3px 0 5px}.vfb-major-publishing-actions .publishing-action{float:right;margin:5px 0 1px;text-align:right;line-height:23px}#form-editor-header .publishing-action{margin-top:12px}.sub-navigation{float:none;margin:8px 0 5px;padding:0;list-style:none;white-space:nowrap;font-size:12px}.sub-navigation li{display:inline;margin:0;padding:0}.sub-navigation a{padding:.2em;text-decoration:none;line-height:2}.sub-navigation a.current{border:none;background:0 0;color:#000;font-weight:700}.sub-navigation a:hover{color:#d54e21}#vfb-main,#vfb-sidebar{float:left;margin:10px 0;width:280px}.rtl #vfb-main,.rtl #vfb-sidebar{float:right}#vfb-main{width:auto}#vfb-main.vfb-order-type-list{width:100%}#vfb-main h3 a,#vfb-main p a{text-decoration:none}#vfb-main .submitdelete{color:#BC0B0B;text-decoration:none}#vfb-main .submitdelete:hover{color:red}#vfb-sidebar{margin-left:-300px}.rtl #vfb-sidebar{margin-left:0;margin-right:-300px}#vfb-form-list{display:block;margin-left:300px}.rtl #vfb-form-list{margin-left:0;margin-right:300px}.vfb-box{position:relative;float:left;padding:0 10px;border:1px solid #DFDFDF;border-radius:3px;background-color:#F5F5F5;background:-moz-linear-gradient(top,#fff 0,#f5f5f5 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#f5f5f5));background:-webkit-linear-gradient(top,#fff 0,#f5f5f5 100%);background:-o-linear-gradient(top,#fff 0,#f5f5f5 100%);background:-ms-linear-gradient(top,#fff 0,#f5f5f5 100%);background:linear-gradient(to bottom,#fff 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0 );box-shadow:0 1px 0 #FFF inset;line-height:1.4em}.vfb-form-alpha-list{width:70%;float:left;padding-right:20px}.rtl .vfb-form-alpha-list{float:right;padding-right:0;padding-left:20px}.vfb-form-alpha-list hr{display:block;margin:1em 0;padding:0;height:1px;border:0;border-top:1px solid #ccc}.vfb-form-alpha-group .letter,.wrap h2.letter{float:left;padding:0;color:#666;font-size:14px;line-height:17px}.vfb-form-alpha-form{display:block;margin:10px 0;padding-left:150px;width:auto}.vfb-form-alpha-form h3{float:left;margin:0;width:50%;word-wrap:break-word;font-size:17px}.vfb-form-alpha-form .vfb-form-meta,.vfb-form-alpha-form .vfb-publishing-actions{float:left;width:20%;text-align:center}.vfb-form-alpha-form .vfb-form-meta{width:30%}.vfb-form-alpha-form .vfb-form-meta p,.vfb-form-alpha-form .vfb-publishing-actions p{margin:0}.vfb-form-alpha-form .paypal,.vfb-form-alpha-form .vfb-form-meta{float:left;margin:0;text-align:left}.rtl .vfb-form-alpha-form .paypal,.rtl .vfb-form-alpha-form .vfb-form-meta{float:right;text-align:right}.vfb-sortable-placeholder{display:block;height:35px;width:400px;margin:8px;border:1px dashed #bbb;background-color:#f5f5f5}#vfb-main .vfb-sortable-placeholder{float:left;margin:8px;height:200px;width:210px}.rtl #vfb-main .vfb-sortable-placeholder{float:right}#vfb-menu-to-edit .mjs-nestedSortable-error{border-color:red;background-color:#fbe3e4;color:#8a1f11}.vfb-meta-entries-total span,.vfb-meta-entries-total-today span{font-size:11px;font-weight:700;height:1.4em;line-height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;border-radius:5px;background-color:#bbb;color:#fff;text-align:center}.vfb-meta-entries-total-today:hover span,.vfb-meta-entries-total:hover span{background-color:#d54e21}.fixed .column-entries,.fixed .column-form_id{width:8em}strong .vfb-meta-entries-total span{background-color:#21759B}.entries-count-wrapper{font-family:sans-serif;min-width:22px;padding-bottom:1px}#new-form{margin:8px 0;padding-top:10px;width:75px;height:105px;text-align:center}#new-form a{display:block;width:auto;text-decoration:none}#post-body{padding:10px;background:#fff}.vfb-postbox-container{float:left;margin:0 8px;width:100%}.rtl .vfb-postbox-container{float:right}#vfb-postbox-container-1 .postbox{min-width:281px}#vfb-postbox-container-2{min-width:485px}#vfb-form-builder-frame.columns-1{margin-left:-8px}.rtl #vfb-form-builder-frame.columns-1{margin-left:0;margin-right:-8px}#vfb-form-builder-frame.columns-1 #vfb-postbox-container-1{float:none}#vfb-form-builder-frame.columns-1 #vfb-postbox-container-2{width:99%}#vfb-form-builder-frame.columns-2 #vfb-postbox-container-3{display:none}#vfb-form-builder-frame.columns-2 #vfb-postbox-container-1,#vfb-form-builder-frame.columns-3 #vfb-postbox-container-1{margin-left:-290px;width:281px}.rtl #vfb-form-builder-frame.columns-2 #vfb-postbox-container-1,.rtl #vfb-form-builder-frame.columns-3 #vfb-postbox-container-1{margin-left:0;margin-right:-290px}#vfb-form-builder-frame.columns-3 #vfb-form-builder-management{margin-right:0}#vfb-form-builder-frame.columns-3 #vfb-postbox-container-2{width:30%}#vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{display:inline;margin-right:0;width:46.5%}.rtl #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{margin-right:0;margin-left:0}#vfb-form-meta-preview iframe{width:100%;height:100%}#vfb_form_media_button_tip input{width:100%;border:0;padding:6px;font-family:Consolas,Monaco,monospace;font-size:12px}@media only screen and (max-width:799px){#vfb-form-builder-frame .vfb-postbox-container{width:100%}.columns-prefs .columns-prefs-3{display:none}}@media only screen and (min-width:800px) and (max-width:1200px){#vfb-form-builder-frame .vfb-postbox-container{width:49.5%}#vfb-form-builder-frame.columns-3 #vfb-postbox-container-2,#vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{width:50.5%}#vfb-form-builder-frame.columns-1 .vfb-postbox-container{width:100%}}@media only screen and (min-width:1600px){#vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{width:58%}}.item-edit{position:absolute;top:3px;right:-20px;display:block;overflow:hidden;width:30px;height:40px;background:url(../img/arrows.png?d=20130703) 8px 10px no-repeat;text-indent:-999em}.admin-color-classic .item-edit{background:url(../img/arrows-vs.png?d=20130703) 8px 10px no-repeat}.rtl .item-edit{right:auto;left:-20px}.item-edit:hover{background:url(../img/arrows-dark.png?d=20130703) 8px 10px no-repeat}.admin-color-classic .item-edit:hover{background:url(../img/arrows-dark-vs.png?d=20130703) 8px 10px no-repeat}.item-edit.opened{background:url(../img/arrows.png?d=20130703) 8px -25px no-repeat}.admin-color-classic .item-edit.opened{background:url(../img/arrows-vs.png?d=20130703) 8px -25px no-repeat}.item-edit.opened:hover{background:url(../img/arrows-dark.png?d=20130703) 8px -25px no-repeat}.admin-color-classic .item-edit.opened:hover{background:url(../img/arrows-dark-vs.png?d=20130703) 8px -25px no-repeat}.option .widefat,.options-other-hide .widefat,.options-other-show .widefat{margin:0 6px 7px 0;width:320px}.rtl .option .widefat,.rtl .options-other-hide .widefat,.rtl .options-other-show .widefat{margin:0 0 7px 6px}#form-settings .description-thin{margin:12px 10px 12px 0}.rtl #form-settings .description-thin{margin:12px 0 12px 10px}.description-thin,.description-wide{float:left;margin-right:10px}.rtl .description-thin,.rtl .description-wide{float:right;margin-right:0;margin-left:10px}.description-thin{width:190px;height:40px}.description-wide{width:390px}.vfb-interface-icon{position:absolute;top:4px;right:4px;display:inline-block;width:16px;height:16px;background-color:transparent;background-image:url(../img/vfb-interface-icons.png?d=20130713);background-repeat:no-repeat;text-indent:-9999px}.vfb-interface-settings{background-position:-32px 0}.vfb-interface-duplicate{background-position:0 0}.vfb-interface-trash{background-position:-64px 0}.vfb-interface-conditional{background-position:-224px 0}.vfb-interface-sort{background-position:-128px 0}.vfb-interface-plus{background-position:-160px 0}.vfb-interface-minus{background-position:-192px 0}.vfb-interface-bulk-add{background-position:-96px 0}.vfb-interface-minus,.vfb-interface-plus{top:0}.addEmail,.deleteEmail{top:28px}.addEmail{right:55px}.rtl .addEmail{right:auto;left:55px}.deleteEmail{right:30px}.rtl .deleteEmail{right:auto;left:30px}.addCondition,.deleteCondition,.deleteOption,.vfb-interface-sort{top:3px}.addCondition,.deleteOption{right:25px}.rtl .addCondition,.rtl .deleteOption{right:auto;left:25px}.deleteCondition,.vfb-interface-sort{right:0}.rtl .deleteCondition,.rtl .vfb-interface-sort{right:auto;left:0}.option{float:left;width:97%;position:relative}.rtl .option{float:right}#vfb-poststuff{display:block;margin-right:300px}.rtl #vfb-poststuff{margin-right:0;margin-left:300px}#vfb-entries-body-content{float:left;width:100%}.rtl #vfb-entries-body-content{float:right}.metabox-holder #vfb-entries-body-content h3{font-weight:700;font-family:sans-serif}#entry-edit #side-info-column{margin-right:-300px}.rtl #entry-edit #side-info-column{margin-right:0;margin-left:-300px}label.error{display:block;color:red}#visual-form-builder-update input.error,#visual-form-builder-update select.error,#visual-form-builder-update textarea.error{border:1px solid red}#vfb-menu-to-edit .menu-item-settings{width:402px}.vfb-menu-item-handle{background:#fff;border:1px solid #DFDFDF;border-radius:3px;height:auto;line-height:35px;overflow:hidden;padding:10px 15px;position:relative;text-shadow:0 1px 0 #FFF;width:382px;word-wrap:break-word;cursor:move}.vfb-menu-item-handle:hover{border-color:#999}.admin-color-classic .vfb-menu-item-handle{background:#F5FAFD;box-shadow:0 1px 0 #FFF inset;border-color:#D0DFE9}.rtl .vfb-menu-item-handle{padding-left:0;padding-right:10px}#form-element-fieldset,.vfb-menu-item-type-fieldset,.vfb-menu-item-type-verification{background:#e3e3e3;box-shadow:0 1px 0 #e3e3e3 inset}.admin-color-classic #form-element-fieldset,.admin-color-classic .vfb-menu-item-type-fieldset,.admin-color-classic .vfb-menu-item-type-verification{background:#e2f3ff;box-shadow:0 1px 0 #FFF inset}.vfb-menu-item-handle .item-title{min-height:20px;display:block;font-size:12px;font-weight:700;line-height:20px;margin-right:13em}.rtl .vfb-menu-item-handle .item-title{margin-right:0;margin-left:13em}.vfb-menu-item-active .vfb-menu-item-handle{border-bottom-left-radius:0;border-bottom-right-radius:0}.sender-labels{width:80px}.is-field-required{color:#BC1212}#form-details-nav{padding-top:10px;font-size:1em}#form-details-nav a,.charts-nav a{padding:5px 10px;text-decoration:none;font-weight:700}#form-details-nav a.current,.charts-nav a.current{height:40px;border-color:#dfdfdf;border-radius:5px;background-color:#777;background-image:-ms-linear-gradient(bottom,#6d6d6d,grey);background-image:-moz-linear-gradient(bottom,#6d6d6d,grey);background-image:-o-linear-gradient(bottom,#6d6d6d,grey);background-image:-webkit-gradient(linear,left bottom,left top,from(#6d6d6d),to(grey));background-image:-webkit-linear-gradient(bottom,#6d6d6d,grey);background-image:linear-gradient(bottom,#6d6d6d,grey);color:#fff;text-shadow:0 -1px 0 #333}#form-success-message-page,#form-success-message-redirect,#form-success-message-text,.form-details{display:none}.active,.form-details-current{display:block}#confirmation-message textarea,#notification textarea{width:100%;height:10em;font-family:Consolas,Monaco,monospace}#form-success-message-page,#form-success-message-redirect{margin-top:10px;width:100%}.post-body-plain ol li{list-style:decimal}#vfb-upgrade-column{display:inline;float:left;width:auto}.rtl #vfb-upgrade-column{float:right}ul#promote-vfb{margin-left:20px;list-style:disc}.rtl ul#promote-vfb{margin-left:auto;margin-right:20px}#promote-vfb li{text-align:left}.rtl #promote-vfb li{text-align:right}.menu .ui-nestedSortable-error{background-color:#fbe3e4;border-color:red;color:#8a1f11}ul#vfb-menu-to-edit ul{margin:0 0 0 25px;padding:0;width:98%;list-style-type:none}#vfb-menu-to-edit{margin-top:0;padding:1em 0}#vfb-fieldset-first-warning{display:none}.form-item.ui-state-disabled,.ui-state-disabled,.ui-state-disabled dl,.ui-state-disabled dt{opacity:100;filter:alpha(Opacity=100);background-image:none}.ui-state-disabled .menu-item-handle,.ui-state-disabled .vfb-menu-item-handle{background:#dfdfdf;box-shadow:none;cursor:default}.vfb-details{margin-bottom:10px;padding:0 10px;border:1px solid #ccc;border-radius:3px}.vfb-details.section{width:97.55%;background-color:#efefef}.vfb-details .postbox{min-height:60px}#poststuff .vfb-details h2{margin-top:0}#poststuff h3.section-heading{padding-left:0}#form-items .tabs-panel{overflow:visible;padding:.5em 0 .5em 4px;min-height:325px;height:auto}.rtl #form-items .tabs-panel{padding:.5em 4px .5em 0}ul.vfb-fields-col-1,ul.vfb-fields-col-2{float:left;width:50%;list-style:none}.rtl ul.vfb-fields-col-1,.rtl ul.vfb-fields-col-2{float:right}#vfb-form-builder-frame.columns-1 #vfb-postbox-container-1 #form-items .tabs-panel{height:auto}.vfb-draggable-form-items{position:relative;display:block;margin-right:8px;padding:4px 0 4px 34px;border:1px solid #bbb;border-radius:3px;color:#464646;text-align:left;text-decoration:none;font-size:12px}.rtl .vfb-draggable-form-items{margin-right:0;margin-left:8px;padding:4px 34px 4px 10px}.vfb-draggable-form-items:hover{border-color:#aaa}.vfb-draggable-form-items b{position:absolute;left:8px;display:inline-block;width:16px;height:16px;background-color:transparent;background-image:url(../img/vfb-form-items.png?d=20130712);background-repeat:no-repeat;line-height:16px}.settings-links,.vfb-button{position:relative;text-decoration:none;cursor:pointer}.rtl .vfb-draggable-form-items b{left:auto;right:8px}#form-element-address b{background-position:-128px 0}#form-element-autocomplete b{background-position:-384px 0}#form-element-checkbox b{background-position:-672px 0}#form-element-color b{background-position:0 0}#form-element-currency b{background-position:-64px 0}#form-element-datepicker b{background-position:-224px 0}#form-element-digits b{background-position:-832px 0}#form-element-email b{background-position:-160px 0}#form-element-file b{background-position:-512px 0}#form-element-hidden b{background-position:-544px 0}#form-element-html b{background-position:-800px 0}#form-element-instructions b{background-position:-256px 0}#form-element-ip b{background-position:-448px 0}#form-element-max b{background-position:-576px 0}#form-element-min b{background-position:-608px 0}#form-element-name b{background-position:-320px 0}#form-element-pagebreak b{background-position:-768px 0}#form-element-password b{background-position:-352px 0}#form-element-phone b{background-position:-96px 0}#form-element-radio b{background-position:-704px 0}#form-element-range b{background-position:-640px 0}#form-element-select b{background-position:-416px 0}#form-element-text b{background-position:-736px 0}#form-element-textarea b{background-position:-32px 0}#form-element-time b{background-position:-192px 0}#form-element-username b{background-position:-288px 0}#form-element-url b{background-position:-480px 0}.static-vars-inactive{display:none}.static-vars-active{display:block}.vfb-button{display:inline-block;overflow:visible;margin:0;padding:.5em 2.5em .5em 1em;outline:0;border:1px solid #d4d4d4;border-radius:.2em;background-color:#f5f5f5;color:#333;white-space:nowrap;font:12px/normal sans-serif;zoom:1;-webkit-background-clip:padding;-moz-background-clip:padding;-o-background-clip:padding-box}.vfb-button.current,.vfb-button:active,.vfb-button:hover{border-color:#929292;background-color:#eee;background-image:-webkit-gradient(linear,0 0,0 100%,from(#eee),to(#ccc));background-image:-moz-linear-gradient(#eee,#ccc);background-image:-o-linear-gradient(#eee,#ccc);background-image:linear-gradient(#eee,#ccc);color:#000}.vfb-button.current{font-weight:700}.vfb-button::-moz-focus-inner{padding:0;border:0}.vfb-button.vfb-settings:active,.vfb-button.vfb-settings:focus,.vfb-button.vfb-settings:hover{color:#3072b3}.vfb-button.vfb-delete:active,.vfb-button.vfb-delete:focus,.vfb-button.vfb-delete:hover{color:#900}.vfb-button.vfb-duplicate:active,.vfb-button.vfb-duplicate:focus,.vfb-button.vfb-duplicate:hover{color:#008e0d}.vfb-button-group{display:inline-block;margin:10px 0;list-style:none}.rtl .vfb-button-group{margin-left:-2px}.vfb-button-group .vfb-button{float:left;margin-right:5px}.rtl .vfb-button-group .vfb-button{float:right;margin-right:0;margin-left:5px}.vfb-button-group .button-primary{margin-top:2px}.vfb-item-actions .vfb-conditional-fields,.vfb-item-actions .vfb-delete,.vfb-item-actions .vfb-duplicate,.vfb-notices{margin-top:10px}.vfb-item-actions{margin-right:10px;margin-bottom:10px;text-align:center}.rtl .vfb-item-actions{margin-right:0;margin-left:10px}.vfb-item-actions .vfb-delete{float:left}.rtl .vfb-item-actions .vfb-delete,.vfb-item-actions .vfb-conditional-fields{float:right}.rtl .vfb-item-actions .vfb-conditional-fields{float:left}#form-settings{display:none;width:100%;max-width:460px;margin-bottom:15px;border-bottom:1px solid #D6D6D6}#form-settings.current,.form-details.on{display:block}.form-details{padding:20px;background:#fff;background:rgba(255,255,255,.5);border-left:1px solid #D6D6D6;border-right:1px solid #D6D6D6}.settings-links{z-index:1;display:block;padding:5px 15px;height:25px;background:#f5f5f5;border-top:1px solid #ccc;border-left:1px solid #ccc;border-right:1px solid #ccc;color:#333;text-transform:uppercase;text-shadow:0 1px 0 #FFF;font-weight:400;font-size:15px;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;line-height:25px}.settings-links .vfb-large-arrow{position:absolute;top:16px;right:25px;width:5px;height:0;z-index:1}.settings-links .vfb-large-arrow:after{content:'';width:0;height:0;border-color:#ccc transparent;border-style:solid;border-width:6px 6px 0;position:absolute;z-index:1}.rtl .settings-links .vfb-large-arrow{right:auto;left:13px}.settings-links.on{border-bottom:1px solid grey}.settings-links.on,.settings-links:hover{background:grey;color:#fff;text-shadow:0 -1px 0 #333}.settings-links:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.vfb-notices{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.vfb-notices.vfb-notice-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.vfb-notices.vfb-notice-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.vfb-notices.vfb-notice-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.vfb-notices.vfb-notice-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.vfb-notices h3{margin-top:0;color:inherit}.vfb-tooltip{position:relative;float:right;margin-right:2px;width:16px;height:16px;cursor:pointer}.rtl .vfb-tooltip{float:left;margin-right:0;margin-left:2px}.vfb-tooltip-popup{position:absolute;top:-40px;z-index:200;display:none;padding:5px 20px;width:250px;border:2px solid #333;border-radius:5px;background:#222;box-shadow:0 0 7px #000;color:#fff;text-indent:0;font-style:normal}.vfb-tooltip .vfb-tooltip-popup h3,.vfb-tooltip-popup h3{margin:5px 0;padding:0 0 6px;border-bottom:1px solid #fff;color:#fff;font-weight:400;font-size:13px;font-family:sans-serif}.vfb-tooltip-popup p{margin-top:1 0;color:#fff;font-size:12px}.vfb-add-options-group{display:inline-block;margin:10px 0;list-style:none;text-align:center;width:95%}.vfb-add-options-group .vfb-interface-plus{top:4px}.vfb-export-label{width:10em;float:left}.rtl .vfb-export-label{float:right}#vfb-export-entries-fields{height:275px;width:300px;overflow:auto;display:block;border:1px solid #e8e8e8;border-radius:3px;margin-left:10em;padding:5px;background:#fff}#vfb-export-select-all,#vfb-export-unselect-all{width:150px;display:inline-block;text-align:left}#vfb-export-unselect-all{text-align:right;margin-left:5px}@media print{body *{float:none}#vfb-poststuff,#wpbody-content,.wrap,html{background:0 0!important;padding:0;margin:0;height:auto}#adminmenuback,#adminmenushadow,#adminmenuwrap,#icon-options-general,#major-publishing-actions,#screen-meta,#screen-meta-links,#wpadminbar,#wpfooter,.clear,.screen-reader-shortcut,.view-entry,.wrap h2{display:none}#wpcontent,body #wpcontent{margin-left:0;width:auto;height:auto}#entry-edit h3 span{font-size:23px;font-weight:400}#vfb-poststuff{page-break-after:auto}#vfb-entries-body-content{width:100%;height:auto;margin:0 0 50px;padding:0}#side-info-column{width:100%;height:auto;float:none}#side-info-column .postbox .inside{margin:0;padding:0}#minor-publishing,#submitdiv,#submitdiv h3,.misc-pub-section{background:0 0!important;border:none;margin:0}#submitdiv h3 span{font-family:sans-serif;font-size:16px}.columns-2 .inner-sidebar #side-sortables,.inner-sidebar #side-sortables{margin:0;padding:0;width:auto}table{page-break-inside:auto}tr textarea{overflow:visible}}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.vfb-interface-icon{top:5px;background-image:url(../img/vfb-interface-icons-2x.png?d=20130712);background-size:cover}.vfb-draggable-form-items b{background-image:url(../img/vfb-form-items-2x.png?d=20130712);background-size:cover}.vfb-add-options-group .vfb-interface-plus{top:5px}.addEmail,.deleteEmail{top:28px}.item-edit{background-image:url(../img/arrows-2x.png?d=20130611);background-size:15px 123px}.admin-color-classic .item-edit{background-image:url(../img/arrows-vs-2x.png?d=20130611);background-size:15px 123px}.item-edit:hover{background-image:url(../img/arrows-dark-2x.png?d=20130611);background-size:15px 123px}.admin-color-classic .item-edit:hover{background-image:url(../img/arrows-dark-vs-2x.png?d=20130611);background-size:15px 123px}.item-edit.opened{background-image:url(../img/arrows-2x.png?d=20130611);background-size:15px 123px}.admin-color-classic .item-edit.opened{background-image:url(../img/arrows-vs-2x.png?d=20130611);background-size:15px 123px}.item-edit.opened:hover{background-image:url(../img/arrows-dark-2x.png?d=20130611);background-size:15px 123px}.admin-color-classic .item-edit.opened:hover{background-image:url(../img/arrows-dark-vs-2x.png?d=20130611);background-size:15px 123px}.button-icon.vfb-small-arrow{background-image:url(../img/arrows-2x.png?d=20130611);background-size:15px 123px}.admin-color-classic .button-icon.vfb-small-arrow{background-image:url(../img/arrows-vs-2x.png?d=20130611);background-size:15px 123px}.current .button-icon.vfb-small-arrow{background-image:url(../img/arrows-2x.png?d=20130611);background-size:15px 123px}.admin-color-classic .current .button-icon.vfb-small-arrow{background-image:url(../img/arrows-vs.png?d=20130611);background-size:15px 123px}}
1
+ .vfb-pro-call-to-action{padding:5px 0;text-align:center}.vfb-pro-call-to-action .cta-sign-up{font-size:24px;font-weight:bold;line-height:22px;display:block;width:100%;text-align:center;text-decoration:none;color:#ffffff;text-shadow:1px 1px 1px #2b658c}.vfb-pro-call-to-action .cta-price{font-size:12px;font-weight:normal;line-height:20px;line-height:20px;display:block;width:100%;text-align:center;text-decoration:none;color:#ace7ff}.vfb-btn{font-size:21px;font-weight:500;line-height:20px;display:inline-block;margin-bottom:0;padding:15px 10px;cursor:pointer;text-align:center;vertical-align:middle;text-decoration:none;color:#333333;border:1px solid #cccccc;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;border-radius:6px;background-color:#f5f5f5;background-repeat:repeat-x;box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);text-shadow:0 1px 1px rgba(255,255,255,0.75)}.vfb-btn:hover,.vfb-btn:focus{-webkit-transition:background-position 0.1s linear;transition:background-position 0.1s linear;text-decoration:none;color:#333333;background-position:0 -15px}.vfb-btn:focus{outline:thin dotted #333333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.vfb-btn.active,.vfb-btn:active{outline:0;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.vfb-btn-primary{color:#ffffff;border-color:#0044cc #0044cc #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);background-image:-webkit-linear-gradient(top, #08c, #04c);background-image:linear-gradient(to bottom, #08c, #04c);background-color:#006dcc;background-repeat:repeat-x;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.vfb-btn-primary.active{color:rgba(255,255,255,0.75)}.vfb-btn-primary:hover,.vfb-btn-primary:focus,.vfb-btn-primary:active,.vfb-btn-primary.active,.vfb-btn-primary.disabled,.vfb-btn-primary[disabled]{color:#ffffff;background-color:#0044cc}.vfb-btn-primary:active,.vfb-btn-primary.active{background-color:#003399 \9}.vfb-btn-inverse{color:#ffffff;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);background-color:#363636;background-repeat:repeat-x;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.vfb-btn-inverse:hover,.vfb-btn-inverse:focus,.vfb-btn-inverse:active,.vfb-btn-inverse.active,.vfb-btn-inverse.disabled,.vfb-btn-inverse[disabled]{color:#ffffff;background-color:#222222}.vfb-button{font:12px/normal sans-serif;position:relative;display:inline-block;overflow:visible;zoom:1;margin:0;padding:0.5em 2.5em 0.5em 1em;cursor:pointer;white-space:nowrap;text-decoration:none;color:#333333;border:1px solid #d4d4d4;border-radius:0.2em;outline:none;background-color:#f5f5f5}.vfb-button:hover,.vfb-button:active,.vfb-button.current{color:#000000;border-color:#929292;border-bottom-color:#929292;background-image:-webkit-linear-gradient(#eee, #ccc);background-image:linear-gradient(#eee, #ccc);background-color:#eeeeee}.vfb-button.current{font-weight:bold}.vfb-button::-moz-focus-inner{padding:0;border:0}.vfb-button.vfb-settings:hover,.vfb-button.vfb-settings:focus,.vfb-button.vfb-settings:active{color:#3072b3}.vfb-button.vfb-delete:hover,.vfb-button.vfb-delete:focus,.vfb-button.vfb-delete:active{color:#990000}.vfb-button.vfb-duplicate:hover,.vfb-button.vfb-duplicate:focus,.vfb-button.vfb-duplicate:active{color:#008e0d}.vfb-button-group{display:inline-block;margin:10px 0;list-style:none}.rtl .vfb-button-group{margin-left:-2px}.vfb-button-group .vfb-button{float:left;margin-right:5px}.rtl .vfb-button-group .vfb-button{float:right;margin-right:0;margin-left:5px}.vfb-button-group .button-primary{margin-top:2px}.vfb-item-actions{margin-right:10px;margin-bottom:10px;text-align:center}.rtl .vfb-item-actions{margin-right:0;margin-left:10px}.vfb-item-actions .vfb-delete{float:left}.rtl .vfb-item-actions .vfb-delete{float:right}.vfb-item-actions .vfb-conditional-fields{float:right}.rtl .vfb-item-actions .vfb-conditional-fields{float:left}.vfb-item-actions .vfb-delete,.vfb-item-actions .vfb-duplicate,.vfb-item-actions .vfb-conditional-fields{margin-top:10px}.vfb-pro-upgrade{display:inline;float:left;margin-bottom:20px;padding:10px;border:1px solid #21759b;border-radius:5px;background-color:#d3e7ee}.rtl .vfb-pro-upgrade{float:right}.vfb-pro-upgrade h2,.wrap .vfb-pro-upgrade h2{font-size:23px;font-weight:500;padding:5px 0;text-align:center}.vfb-pro-upgrade h2 a{text-decoration:none}.vfb-pro-upgrade ul{margin-left:10px;list-style:outside}.rtl .vfb-pro-upgrade ul{margin-right:10px;margin-left:0}#vfb-upgrade-column{display:inline;float:left;width:auto}.rtl #vfb-upgrade-column{float:right}ul#promote-vfb{margin-left:20px;list-style:disc}.rtl ul#promote-vfb{margin-right:20px;margin-left:auto}#promote-vfb li{text-align:left}.rtl #promote-vfb li{text-align:right}#vfb-form-builder-frame{display:block;margin:0 -8px 0 290px}.rtl #vfb-form-builder-frame{margin:0 290px 0 -8px}#vfb-form-builder-frame:after,#form-editor-header .vfb-major-publishing-actions:after,#form-editor-footer .vfb-major-publishing-actions:after,#vfb-form-builder-frame .menu-item-settings:after,#vfb-form-list:after,.option:after{display:block;visibility:hidden;clear:both;height:0;content:'.'}#vfb-form-builder-sidebar{clear:both;width:281px}#vfb-form-builder-management{position:relative;margin-right:10px}.rtl #vfb-form-builder-management{margin-right:0;margin-left:10px}#vfb-form-builder-management .form-edit{margin-bottom:20px;border:1px solid #dfdfdf;border-radius:3px}.admin-color-classic #vfb-form-builder-management .form-edit{border-color:#d0dfe9}#form-editor-header,#form-editor-footer{padding:0 10px;background-color:#f1f1f1}#form-editor-footer{border-top:1px solid #dfdfdf}.admin-color-classic #form-editor-header,.admin-color-classic #form-editor-footer{background-color:#f5fafd}.admin-color-class #form-editor-footer{border-top-color:#d0dfe9}.vfb-major-publishing-actions{clear:both;padding:3px 0 5px}.vfb-major-publishing-actions .publishing-action{line-height:23px;float:right;margin:5px 0 1px;text-align:right}#form-editor-header .publishing-action{margin-top:12px}#vfb-sidebar,#vfb-main{float:left;width:280px;margin:10px 0}.rtl #vfb-sidebar,.rtl #vfb-main{float:right}#vfb-main{width:auto}#vfb-main.vfb-order-type-list{width:100%}#vfb-main p a,#vfb-main h3 a{text-decoration:none}#vfb-main .submitdelete{text-decoration:none;color:#bc0b0b}#vfb-main .submitdelete:hover{color:red}#vfb-sidebar{margin-left:-300px}.rtl #vfb-sidebar{margin-right:-300px;margin-left:0}#vfb-form-list{display:block;margin-left:300px}.rtl #vfb-form-list{margin-right:300px;margin-left:0}.vfb-box{line-height:1.4em;position:relative;float:left;padding:0 10px;border:1px solid #dfdfdf;border-radius:3px 3px 3px 3px;background:-webkit-linear-gradient(top, #fff 0%, #f5f5f5 100%);background:linear-gradient(to bottom, #fff 0%, #f5f5f5 100%);background-color:#f5f5f5;box-shadow:0 1px 0 #ffffff inset}.vfb-form-alpha-list{float:left;width:70%;padding-right:20px}.rtl .vfb-form-alpha-list{float:right;padding-right:0;padding-left:20px}.vfb-form-alpha-list hr{display:block;height:1px;margin:1em 0;padding:0;border:0;border-top:1px solid #cccccc}.vfb-form-alpha-group .letter,.wrap h2.letter{font-size:14px;line-height:17px;float:left;padding:0;color:#666666}.vfb-form-alpha-form{display:block;width:auto;margin:10px 0;padding-left:150px}.vfb-form-alpha-form h3{font-size:17px;float:left;width:50%;margin:0;word-wrap:break-word}.vfb-form-alpha-form .vfb-publishing-actions,.vfb-form-alpha-form .vfb-form-meta{float:left;width:20%;text-align:center}.vfb-form-alpha-form .vfb-form-meta{width:30%}.vfb-form-alpha-form .vfb-publishing-actions p,.vfb-form-alpha-form .vfb-form-meta p{margin:0}.vfb-form-alpha-form .vfb-form-meta,.vfb-form-alpha-form .paypal{float:left;margin:0;text-align:left}.rtl .vfb-form-alpha-form .vfb-form-meta,.rtl .vfb-form-alpha-form .paypal{float:right;text-align:right}.vfb-sortable-placeholder{display:block;width:400px;height:35px;margin:8px;border:1px dashed #bbbbbb;background-color:#f5f5f5}#vfb-main .vfb-sortable-placeholder{float:left;width:210px;height:200px;margin:8px}.rtl #vfb-main .vfb-sortable-placeholder{float:right}#vfb-menu-to-edit .mjs-nestedSortable-error{color:#8a1f11;border-color:red;background-color:#fbe3e4}.vfb-postbox-container{float:left;width:100%;margin:0 8px}.rtl .vfb-postbox-container{float:right}#vfb-postbox-container-1 .postbox{min-width:281px}#vfb-postbox-container-2{min-width:485px}#vfb-form-builder-frame.columns-1{margin-left:-8px}.rtl #vfb-form-builder-frame.columns-1{margin-right:-8px;margin-left:0}#vfb-form-builder-frame.columns-1 #vfb-postbox-container-1{float:none}#vfb-form-builder-frame.columns-1 #vfb-postbox-container-2{width:99%}#vfb-form-builder-frame.columns-2 #vfb-postbox-container-3{display:none}#vfb-form-builder-frame.columns-2 #vfb-postbox-container-1,#vfb-form-builder-frame.columns-3 #vfb-postbox-container-1{width:281px;margin-left:-290px}.rtl #vfb-form-builder-frame.columns-2 #vfb-postbox-container-1,.rtl #vfb-form-builder-frame.columns-3 #vfb-postbox-container-1{margin-right:-290px;margin-left:0}#vfb-form-builder-frame.columns-3 #vfb-form-builder-management{margin-right:0}#vfb-form-builder-frame.columns-3 #vfb-postbox-container-2{width:30%}#vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{display:inline;width:46.5%;margin-right:0}.rtl #vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{margin-right:0;margin-left:0}#vfb-form-meta-preview iframe{width:100%;height:100%}#vfb_form_media_button_tip input{font-family:Consolas, Monaco, monospace;font-size:12px;width:100%;padding:6px;border:0}@media only screen and (max-width: 799px){#vfb-form-builder-frame .vfb-postbox-container{width:100%}.columns-prefs .columns-prefs-3{display:none}}@media only screen and (min-width: 800px) and (max-width: 1200px){#vfb-form-builder-frame .vfb-postbox-container{width:49.5%}#vfb-form-builder-frame.columns-3 #vfb-postbox-container-2,#vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{width:50.5%}#vfb-form-builder-frame.columns-1 .vfb-postbox-container{width:100%}}@media only screen and (min-width: 1600px){#vfb-form-builder-frame.columns-3 #vfb-postbox-container-3{width:58%}}#new-form{width:75px;height:105px;margin:8px 0;padding-top:10px;text-align:center}#new-form a{display:block;width:auto;text-decoration:none}#post-body{padding:10px;background:white}#form-settings{display:none;width:100%;max-width:460px;margin-bottom:15px;border-bottom:1px solid #d6d6d6}#form-settings.current{display:block}.form-details{padding:20px;border-right:1px solid #d6d6d6;border-left:1px solid #d6d6d6;background:#fff;background:rgba(255,255,255,0.5)}.form-details.on{display:block}.settings-links{font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:15px;font-weight:normal;line-height:25px;position:relative;z-index:1;display:block;height:25px;padding:5px 15px;cursor:pointer;text-decoration:none;text-transform:uppercase;color:#333;border-top:1px solid #ccc;border-right:1px solid #ccc;border-left:1px solid #ccc;background:#f5f5f5;text-shadow:0 1px 0 #fff}.settings-links .vfb-large-arrow{position:absolute;z-index:1;top:16px;right:25px;width:5px;height:0}.settings-links .vfb-large-arrow:after{position:absolute;z-index:1;width:0;height:0;content:'';border-width:6px 6px 0;border-style:solid;border-color:#ccc transparent}.rtl .settings-links .vfb-large-arrow{right:auto;left:13px}.settings-links.on{border-bottom:1px solid #808080}.settings-links:hover,.settings-links.on{color:#fff;background:#808080;text-shadow:0 -1px 0 #333}.settings-links:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.sub-navigation{font-size:12px;float:none;margin:8px 0 5px;padding:0;list-style:none;white-space:nowrap}.sub-navigation li{display:inline;margin:0;padding:0}.sub-navigation a{line-height:2;padding:0.2em;text-decoration:none}.sub-navigation a:hover{color:#d54e21}.sub-navigation a.current{font-weight:bold;color:black;border:medium none;background:none}.vfb-meta-entries-total span,.vfb-meta-entries-total-today span{font-size:11px;font-weight:bold;line-height:1.4em;display:inline-block;min-width:0.7em;height:1.4em;padding:0 6px;text-align:center;color:white;border-radius:5px;background-color:#bbbbbb}.vfb-meta-entries-total:hover span,.vfb-meta-entries-total-today:hover span{background-color:#d54e21}.fixed .column-entries,.fixed .column-form_id{width:8em}strong .vfb-meta-entries-total span{background-color:#21759b}.entries-count-wrapper{font-family:sans-serif;min-width:22px;padding-bottom:1px}#vfb-poststuff{display:block;margin-right:300px}.rtl #vfb-poststuff{margin-right:0;margin-left:300px}#vfb-entries-body-content{float:left;width:100%}.rtl #vfb-entries-body-content{float:right}.metabox-holder #vfb-entries-body-content h3{font-family:sans-serif;font-weight:bold}#entry-edit #side-info-column{margin-right:-300px}.rtl #entry-edit #side-info-column{margin-right:0;margin-left:-300px}.item-edit{position:absolute;top:3px;right:-20px;display:block;overflow:hidden;width:30px;height:40px;text-indent:-999em;background:url("../img/arrows.png?d=20130703") no-repeat scroll 8px 10px transparent}.admin-color-classic .item-edit{background:url("../img/arrows-vs.png?d=20130703") no-repeat scroll 8px 10px transparent}.rtl .item-edit{right:auto;left:-20px}.item-edit:hover{background:url("../img/arrows-dark.png?d=20130703") no-repeat scroll 8px 10px transparent}.admin-color-classic .item-edit:hover{background:url("../img/arrows-dark-vs.png?d=20130703") no-repeat scroll 8px 10px transparent}.item-edit.opened{background:url("../img/arrows.png?d=20130703") no-repeat scroll 8px -25px transparent}.admin-color-classic .item-edit.opened{background:url("../img/arrows-vs.png?d=20130703") no-repeat scroll 8px -25px transparent}.item-edit.opened:hover{background:url("../img/arrows-dark.png?d=20130703") no-repeat scroll 8px -25px transparent}.admin-color-classic .item-edit.opened:hover{background:url("../img/arrows-dark-vs.png?d=20130703") no-repeat scroll 8px -25px transparent}.option .widefat,.options-other-show .widefat,.options-other-hide .widefat{width:320px;margin:0 6px 7px 0}.rtl .option .widefat,.rtl .options-other-show .widefat,.rtl .options-other-hide .widefat{margin:0 0 7px 6px}#form-settings .description-thin{margin:12px 10px 12px 0}.rtl #form-settings .description-thin{margin:12px 0 12px 10px}.description-thin,.description-wide{float:left;margin-right:10px}.rtl .description-thin,.rtl .description-wide{float:right;margin-right:0;margin-left:10px}.description-thin{width:190px;height:40px}.description-wide{width:390px}#vfb-menu-to-edit .menu-item-settings{width:402px}.vfb-menu-item-handle{line-height:35px;position:relative;overflow:hidden;width:382px;height:auto;padding:10px 15px;cursor:move;word-wrap:break-word;border:1px solid #dfdfdf;border-radius:3px;background:white;text-shadow:0 1px 0 #ffffff}.vfb-menu-item-handle:hover{border-color:#999999}.admin-color-classic .vfb-menu-item-handle{border-color:#d0dfe9;background:#f5fafd;box-shadow:0 1px 0 #ffffff inset}.rtl .vfb-menu-item-handle{padding-right:10px;padding-left:0}.vfb-menu-item-type-fieldset,.vfb-menu-item-type-verification,#form-element-fieldset{background:#e3e3e3;box-shadow:0 1px 0 #e3e3e3 inset}.admin-color-classic .vfb-menu-item-type-fieldset,.admin-color-classic .vfb-menu-item-type-verification,.admin-color-classic #form-element-fieldset{background:#e2f3ff;box-shadow:0 1px 0 #ffffff inset}.vfb-menu-item-handle .item-title{font-size:12px;font-weight:bold;line-height:20px;display:block;min-height:20px;margin-right:13em}.rtl .vfb-menu-item-handle .item-title{margin-right:0;margin-left:13em}.vfb-menu-item-active .vfb-menu-item-handle{border-bottom-right-radius:0;border-bottom-left-radius:0}.sender-labels{width:80px}.is-field-required{color:#bc1212}.menu .ui-nestedSortable-error{color:#8a1f11;border-color:red;background-color:#fbe3e4}ul#vfb-menu-to-edit ul{width:98%;margin:0 0 0 25px;padding:0;list-style-type:none}#vfb-menu-to-edit{margin-top:0;padding:1em 0}#vfb-fieldset-first-warning{display:none}.ui-state-disabled,.ui-state-disabled dl,.ui-state-disabled dt,.form-item.ui-state-disabled{opacity:100;background-image:none}.ui-state-disabled .vfb-menu-item-handle,.ui-state-disabled .menu-item-handle{cursor:default;background:#dfdfdf;box-shadow:none}.vfb-details{margin-bottom:10px;padding:0 10px;border:1px solid #cccccc;border-radius:3px}.vfb-details.section{width:97.55%;background-color:#efefef}.vfb-details .postbox{min-height:60px}#poststuff .vfb-details h2{margin-top:0}#poststuff h3.section-heading{padding-left:0}#form-items .tabs-panel{overflow:visible;height:auto;min-height:325px;padding:0.5em 0 0.5em 4px}.rtl #form-items .tabs-panel{padding:0.5em 4px 0.5em 0}ul.vfb-fields-col-1,ul.vfb-fields-col-2{float:left;width:50%;list-style:none}.rtl ul.vfb-fields-col-1,.rtl ul.vfb-fields-col-2{float:right}#vfb-form-builder-frame.columns-1 #vfb-postbox-container-1 #form-items .tabs-panel{height:auto}.static-vars-inactive{display:none}.static-vars-active{display:block}.vfb-add-options-group{display:inline-block;width:95%;margin:10px 0;list-style:none;text-align:center}.vfb-add-options-group .vfb-interface-plus{top:4px}.vfb-interface-icon{position:absolute;top:4px;right:4px;display:inline-block;width:16px;height:16px;text-indent:-9999px;background-image:url("../img/vfb-interface-icons.png?d=20130713");background-color:transparent;background-repeat:no-repeat}.vfb-interface-settings{background-position:-32px 0}.vfb-interface-duplicate{background-position:0 0}.vfb-interface-trash{background-position:-64px 0}.vfb-interface-conditional{background-position:-224px 0}.vfb-interface-sort{background-position:-128px 0}.vfb-interface-plus{background-position:-160px 0}.vfb-interface-minus{background-position:-192px 0}.vfb-interface-bulk-add{background-position:-96px 0}.vfb-interface-plus,.vfb-interface-minus{top:0}.addEmail,.deleteEmail{top:28px}.addEmail{right:55px}.rtl .addEmail{right:auto;left:55px}.deleteEmail{right:30px}.rtl .deleteEmail{right:auto;left:30px}.deleteOption,.vfb-interface-sort,.addCondition,.deleteCondition{top:3px}.deleteOption,.addCondition{right:25px}.rtl .deleteOption,.rtl .addCondition{right:auto;left:25px}.vfb-interface-sort,.deleteCondition{right:0}.rtl .vfb-interface-sort,.rtl .deleteCondition{right:auto;left:0}.vfb-interface-sort:hover{cursor:pointer}.option{position:relative;float:left;width:97%}.rtl .option{float:right}.vfb-draggable-form-items{font-size:12px;position:relative;position:relative;display:block;margin-right:8px;padding:4px 0 4px 34px;text-align:left;text-decoration:none;color:#464646;border:1px solid #bbbbbb;border-radius:3px}.rtl .vfb-draggable-form-items{margin-right:0;margin-left:8px;padding:4px 34px 4px 10px}.vfb-draggable-form-items:hover{border-color:#aaaaaa}.vfb-draggable-form-items b{line-height:16px;position:absolute;left:8px;display:inline-block;width:16px;height:16px;background-image:url("../img/vfb-form-items.png?d=20130712");background-color:transparent;background-repeat:no-repeat}.rtl .vfb-draggable-form-items b{right:8px;left:auto}#form-element-address b{background-position:-128px 0}#form-element-autocomplete b{background-position:-384px 0}#form-element-checkbox b{background-position:-672px 0}#form-element-color b{background-position:0 0}#form-element-currency b{background-position:-64px 0}#form-element-datepicker b{background-position:-224px 0}#form-element-digits b{background-position:-832px 0}#form-element-email b{background-position:-160px 0}#form-element-file b{background-position:-512px 0}#form-element-hidden b{background-position:-544px 0}#form-element-html b{background-position:-800px 0}#form-element-instructions b{background-position:-256px 0}#form-element-ip b{background-position:-448px 0}#form-element-max b{background-position:-576px 0}#form-element-min b{background-position:-608px 0}#form-element-name b{background-position:-320px 0}#form-element-pagebreak b{background-position:-768px 0}#form-element-password b{background-position:-352px 0}#form-element-phone b{background-position:-96px 0}#form-element-radio b{background-position:-704px 0}#form-element-range b{background-position:-640px 0}#form-element-select b{background-position:-416px 0}#form-element-text b{background-position:-736px 0}#form-element-textarea b{background-position:-32px 0}#form-element-time b{background-position:-192px 0}#form-element-username b{background-position:-288px 0}#form-element-url b{background-position:-480px 0}label.error{display:block;color:red}#visual-form-builder-update input.error,#visual-form-builder-update textarea.error,#visual-form-builder-update select.error{border:1px solid red}#form-details-nav{font-size:1.0em;padding-top:10px}#form-details-nav a,.charts-nav a{font-weight:bold;padding:5px 10px;text-decoration:none}#form-details-nav a.current,.charts-nav a.current{height:40px;color:white;border-color:#dfdfdf;border-radius:5px;background-image:-webkit-linear-gradient(bottom, #6d6d6d, gray);background-image:linear-gradient(bottom, #6d6d6d, gray);background-color:#777777;text-shadow:0 -1px 0 #333333}.form-details,#form-success-message-text,#form-success-message-page,#form-success-message-redirect{display:none}.form-details-current,.active{display:block}#confirmation-message textarea,#notification textarea{font-family:Consolas,Monaco,monospace;width:100%;height:10em}#form-success-message-page,#form-success-message-redirect{width:100%;margin-top:10px}.post-body-plain ol li{list-style:decimal}.vfb-tooltip{position:relative;float:right;width:16px;height:16px;margin-right:2px;cursor:pointer}.rtl .vfb-tooltip{float:left;margin-right:0;margin-left:2px}.vfb-tooltip-popup{font-style:normal;position:absolute;z-index:200;top:-40px;display:none;width:250px;padding:5px 20px;text-indent:0;color:white;border:2px solid #333333;border-radius:5px;background:#222222;box-shadow:0 0 7px black}.vfb-tooltip-popup h3,.vfb-tooltip .vfb-tooltip-popup h3{font-family:sans-serif;font-size:13px;font-weight:normal;margin:5px 0;padding:0 0 6px 0;color:white;border-bottom:1px solid white}.vfb-tooltip-popup p{font-size:12px;margin-top:1 0;color:white}.vfb-notices{margin-top:10px;margin-bottom:20px;padding:15px;border:1px solid transparent;border-radius:4px}.vfb-notices.vfb-notice-success{color:#3c763d;border-color:#d6e9c6;background-color:#dff0d8}.vfb-notices.vfb-notice-info{color:#31708f;border-color:#bce8f1;background-color:#d9edf7}.vfb-notices.vfb-notice-warning{color:#8a6d3b;border-color:#faebcc;background-color:#fcf8e3}.vfb-notices.vfb-notice-danger{color:#a94442;border-color:#ebccd1;background-color:#f2dede}.vfb-notices h3{margin-top:0;color:inherit}.vfb-export-label{float:left;width:10em}.rtl .vfb-export-label{float:right}#vfb-export-entries-fields{display:block;overflow:auto;width:300px;height:275px;margin-left:10em;padding:5px;border:1px solid #e8e8e8;border-radius:3px;background:white}#vfb-export-select-all,#vfb-export-unselect-all{display:inline-block;width:150px;text-align:left}#vfb-export-unselect-all{margin-left:5px;text-align:right}@media print{body *{float:none}html,.wrap,#wpbody-content,#vfb-poststuff{height:auto;margin:0;padding:0;background:none !important}#wpadminbar,#adminmenuwrap,#adminmenushadow,#adminmenuback,.screen-reader-shortcut,#screen-meta,#screen-meta-links,#wpfooter,#icon-options-general,.wrap h2,.view-entry,#major-publishing-actions,.clear{display:none}#wpcontent,body #wpcontent{width:auto;height:auto;margin-left:0}#entry-edit h3 span{font-size:23px;font-weight:normal}#vfb-poststuff{page-break-after:auto}#vfb-entries-body-content{width:100%;height:auto;margin:0 0 50px 0;padding:0}#side-info-column{float:none;width:100%;height:auto}#side-info-column .postbox .inside{margin:0;padding:0}#minor-publishing,.misc-pub-section,#submitdiv,#submitdiv h3{margin:0;border:none;background:none !important}#submitdiv h3 span{font-family:sans-serif;font-size:16px}.inner-sidebar #side-sortables,.columns-2 .inner-sidebar #side-sortables{width:auto;margin:0;padding:0}table{page-break-inside:auto}tr textarea{overflow:visible}}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi){.vfb-interface-icon{top:5px;background-image:url("../img/vfb-interface-icons-2x.png?d=20130712");background-size:cover}.vfb-draggable-form-items b{background-image:url("../img/vfb-form-items-2x.png?d=20130712");background-size:cover}.vfb-add-options-group .vfb-interface-plus{top:5px}.addEmail,.deleteEmail{top:28px}.item-edit{background-image:url("../img/arrows-2x.png?d=20130611");background-size:15px 123px}.admin-color-classic .item-edit{background-image:url("../img/arrows-vs-2x.png?d=20130611");background-size:15px 123px}.item-edit:hover{background-image:url("../img/arrows-dark-2x.png?d=20130611");background-size:15px 123px}.admin-color-classic .item-edit:hover{background-image:url("../img/arrows-dark-vs-2x.png?d=20130611");background-size:15px 123px}.item-edit.opened{background-image:url("../img/arrows-2x.png?d=20130611");background-size:15px 123px}.admin-color-classic .item-edit.opened{background-image:url("../img/arrows-vs-2x.png?d=20130611");background-size:15px 123px}.item-edit.opened:hover{background-image:url("../img/arrows-dark-2x.png?d=20130611");background-size:15px 123px}.admin-color-classic .item-edit.opened:hover{background-image:url("../img/arrows-dark-vs-2x.png?d=20130611");background-size:15px 123px}.button-icon.vfb-small-arrow{background-image:url("../img/arrows-2x.png?d=20130611");background-size:15px 123px}.admin-color-classic .button-icon.vfb-small-arrow{background-image:url("../img/arrows-vs-2x.png?d=20130611");background-size:15px 123px}.current .button-icon.vfb-small-arrow{background-image:url("../img/arrows-2x.png?d=20130611");background-size:15px 123px}.admin-color-classic .current .button-icon.vfb-small-arrow{background-image:url("../img/arrows-vs.png?d=20130611");background-size:15px 123px}}
admin/class-load-css-js.php CHANGED
@@ -17,7 +17,7 @@ class Visual_Form_Builder_Admin_Scripts_Loader {
17
  * @return void
18
  */
19
  public function add_css() {
20
- wp_enqueue_style( 'visual-form-builder-style', VFB_WP_PLUGIN_URL . "admin/assets/css/visual-form-builder-admin.min.css", array(), '2018.08.09' );
21
  }
22
 
23
  /**
17
  * @return void
18
  */
19
  public function add_css() {
20
+ wp_enqueue_style( 'visual-form-builder-style', VFB_WP_PLUGIN_URL . "admin/assets/css/visual-form-builder-admin.min.css", array(), '2019.04.01' );
21
  }
22
 
23
  /**
config.codekit3 ADDED
@@ -0,0 +1,4340 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "AAInfo": "This is a CodeKit 3 project config file. MODIFYING THE CONTENTS OF THIS FILE IS A POOR LIFE DECISION. Doing so will cause CodeKit to crash and/or corrupt your project. I know it looks like JSON, but it is *not*. Many numbers in this file are 64-bit long long bitFlags, which JSON does not support. These numbers *cannot* be treated as discrete values and if you attempt to parse this file as standard JSON with any public JSON parser, these values will be corrupted. This file is not backwards-compatible with CodeKit 1 or 2. For more information, see https://codekitapp.com/",
3
+ "buildSteps": [
4
+ {
5
+ "name": "Process All Remaining Files and Folders",
6
+ "stepType": 1,
7
+ "uuidString": "69E27B3E-5053-4F87-BD96-3F2E13A0E8CE"
8
+ }
9
+ ],
10
+ "creatorBuild": "29156",
11
+ "files": {
12
+ "/admin/assets/css/index.php": {
13
+ "cB": 0,
14
+ "ft": 8192,
15
+ "hM": 0,
16
+ "oA": 0,
17
+ "oAP": "/admin/assets/css/index.php",
18
+ "oF": 0
19
+ },
20
+ "/admin/assets/css/sass/partials/_buttons.scss": {
21
+ "aP": 0,
22
+ "bl": 0,
23
+ "dP": 10,
24
+ "dS": 0,
25
+ "ft": 4,
26
+ "ma": 0,
27
+ "oA": 1,
28
+ "oAP": "/admin/assets/css/sass/_buttons.min.css",
29
+ "oF": 0,
30
+ "oS": 0,
31
+ "uL": 1
32
+ },
33
+ "/admin/assets/css/sass/partials/_confirmation.scss": {
34
+ "aP": 0,
35
+ "bl": 0,
36
+ "dP": 10,
37
+ "dS": 0,
38
+ "ft": 4,
39
+ "ma": 0,
40
+ "oA": 1,
41
+ "oAP": "/admin/assets/css/sass/_confirmation.min.css",
42
+ "oF": 0,
43
+ "oS": 0,
44
+ "uL": 1
45
+ },
46
+ "/admin/assets/css/sass/partials/_cta.scss": {
47
+ "aP": 0,
48
+ "bl": 0,
49
+ "dP": 10,
50
+ "dS": 0,
51
+ "ft": 4,
52
+ "ma": 0,
53
+ "oA": 1,
54
+ "oAP": "/admin/assets/css/sass/_cta.min.css",
55
+ "oF": 0,
56
+ "oS": 0,
57
+ "uL": 1
58
+ },
59
+ "/admin/assets/css/sass/partials/_entries.scss": {
60
+ "aP": 0,
61
+ "bl": 0,
62
+ "dP": 10,
63
+ "dS": 0,
64
+ "ft": 4,
65
+ "ma": 0,
66
+ "oA": 1,
67
+ "oAP": "/admin/assets/css/sass/_entries.min.css",
68
+ "oF": 0,
69
+ "oS": 0,
70
+ "uL": 1
71
+ },
72
+ "/admin/assets/css/sass/partials/_export.scss": {
73
+ "aP": 0,
74
+ "bl": 0,
75
+ "dP": 10,
76
+ "dS": 0,
77
+ "ft": 4,
78
+ "ma": 0,
79
+ "oA": 1,
80
+ "oAP": "/admin/assets/css/sass/_export.min.css",
81
+ "oF": 0,
82
+ "oS": 0,
83
+ "uL": 1
84
+ },
85
+ "/admin/assets/css/sass/partials/_fields.scss": {
86
+ "aP": 0,
87
+ "bl": 0,
88
+ "dP": 10,
89
+ "dS": 0,
90
+ "ft": 4,
91
+ "ma": 0,
92
+ "oA": 1,
93
+ "oAP": "/admin/assets/css/sass/_fields.min.css",
94
+ "oF": 0,
95
+ "oS": 0,
96
+ "uL": 1
97
+ },
98
+ "/admin/assets/css/sass/partials/_form-edit.scss": {
99
+ "aP": 0,
100
+ "bl": 0,
101
+ "dP": 10,
102
+ "dS": 0,
103
+ "ft": 4,
104
+ "ma": 0,
105
+ "oA": 1,
106
+ "oAP": "/admin/assets/css/sass/_form-edit.min.css",
107
+ "oF": 0,
108
+ "oS": 0,
109
+ "uL": 1
110
+ },
111
+ "/admin/assets/css/sass/partials/_form-new.scss": {
112
+ "aP": 0,
113
+ "bl": 0,
114
+ "dP": 10,
115
+ "dS": 0,
116
+ "ft": 4,
117
+ "ma": 0,
118
+ "oA": 1,
119
+ "oAP": "/admin/assets/css/sass/_form-new.min.css",
120
+ "oF": 0,
121
+ "oS": 0,
122
+ "uL": 1
123
+ },
124
+ "/admin/assets/css/sass/partials/_form-settings.scss": {
125
+ "aP": 0,
126
+ "bl": 0,
127
+ "dP": 10,
128
+ "dS": 0,
129
+ "ft": 4,
130
+ "ma": 0,
131
+ "oA": 1,
132
+ "oAP": "/admin/assets/css/sass/_form-settings.min.css",
133
+ "oF": 0,
134
+ "oS": 0,
135
+ "uL": 1
136
+ },
137
+ "/admin/assets/css/sass/partials/_icons.scss": {
138
+ "aP": 0,
139
+ "bl": 0,
140
+ "dP": 10,
141
+ "dS": 0,
142
+ "ft": 4,
143
+ "ma": 0,
144
+ "oA": 1,
145
+ "oAP": "/admin/assets/css/sass/_icons.min.css",
146
+ "oF": 0,
147
+ "oS": 0,
148
+ "uL": 1
149
+ },
150
+ "/admin/assets/css/sass/partials/_notices.scss": {
151
+ "aP": 0,
152
+ "bl": 0,
153
+ "dP": 10,
154
+ "dS": 0,
155
+ "ft": 4,
156
+ "ma": 0,
157
+ "oA": 1,
158
+ "oAP": "/admin/assets/css/sass/_notices.min.css",
159
+ "oF": 0,
160
+ "oS": 0,
161
+ "uL": 1
162
+ },
163
+ "/admin/assets/css/sass/partials/_print.scss": {
164
+ "aP": 0,
165
+ "bl": 0,
166
+ "dP": 10,
167
+ "dS": 0,
168
+ "ft": 4,
169
+ "ma": 0,
170
+ "oA": 1,
171
+ "oAP": "/admin/assets/css/sass/_print.min.css",
172
+ "oF": 0,
173
+ "oS": 0,
174
+ "uL": 1
175
+ },
176
+ "/admin/assets/css/sass/partials/_subnav.scss": {
177
+ "aP": 0,
178
+ "bl": 0,
179
+ "dP": 10,
180
+ "dS": 0,
181
+ "ft": 4,
182
+ "ma": 0,
183
+ "oA": 1,
184
+ "oAP": "/admin/assets/css/sass/_subnav.min.css",
185
+ "oF": 0,
186
+ "oS": 0,
187
+ "uL": 1
188
+ },
189
+ "/admin/assets/css/sass/partials/_tooltips.scss": {
190
+ "aP": 0,
191
+ "bl": 0,
192
+ "dP": 10,
193
+ "dS": 0,
194
+ "ft": 4,
195
+ "ma": 0,
196
+ "oA": 1,
197
+ "oAP": "/admin/assets/css/sass/_tooltips.min.css",
198
+ "oF": 0,
199
+ "oS": 0,
200
+ "uL": 1
201
+ },
202
+ "/admin/assets/css/sass/partials/_upgrade.scss": {
203
+ "aP": 0,
204
+ "bl": 0,
205
+ "dP": 10,
206
+ "dS": 0,
207
+ "ft": 4,
208
+ "ma": 0,
209
+ "oA": 1,
210
+ "oAP": "/admin/assets/css/sass/_upgrade.min.css",
211
+ "oF": 0,
212
+ "oS": 0,
213
+ "uL": 1
214
+ },
215
+ "/admin/assets/css/sass/partials/_validation.scss": {
216
+ "aP": 0,
217
+ "bl": 0,
218
+ "dP": 10,
219
+ "dS": 0,
220
+ "ft": 4,
221
+ "ma": 0,
222
+ "oA": 1,
223
+ "oAP": "/admin/assets/css/sass/_validation.min.css",
224
+ "oF": 0,
225
+ "oS": 0,
226
+ "uL": 1
227
+ },
228
+ "/admin/assets/css/sass/visual-form-builder-admin.scss": {
229
+ "aP": 1,
230
+ "bl": 0,
231
+ "dP": 10,
232
+ "dS": 0,
233
+ "ft": 4,
234
+ "ma": 0,
235
+ "oA": 0,
236
+ "oAP": "/admin/assets/css/visual-form-builder-admin.min.css",
237
+ "oF": 0,
238
+ "oS": 3,
239
+ "uL": 1
240
+ },
241
+ "/admin/assets/css/visual-form-builder-admin.css": {
242
+ "aP": 1,
243
+ "bl": 0,
244
+ "ft": 16,
245
+ "ma": 0,
246
+ "oA": 0,
247
+ "oAP": "/admin/assets/css/visual-form-builder-admin-min.css",
248
+ "oF": 0,
249
+ "oS": 3
250
+ },
251
+ "/admin/assets/css/visual-form-builder-admin.min.css": {
252
+ "aP": 1,
253
+ "bl": 0,
254
+ "ft": 16,
255
+ "ma": 0,
256
+ "oA": 0,
257
+ "oAP": "/admin/assets/css/visual-form-builder-admin.min-min.css",
258
+ "oF": 0,
259
+ "oS": 3
260
+ },
261
+ "/admin/assets/img/arrows-2x.png": {
262
+ "ft": 32768,
263
+ "iS": 863,
264
+ "oA": 0,
265
+ "oAP": "/admin/assets/img/arrows-2x.png",
266
+ "oF": 0,
267
+ "oIPL": 0,
268
+ "opt": 0,
269
+ "oT": 1,
270
+ "q": 100
271
+ },
272
+ "/admin/assets/img/arrows-dark-2x.png": {
273
+ "ft": 32768,
274
+ "iS": 719,
275
+ "oA": 0,
276
+ "oAP": "/admin/assets/img/arrows-dark-2x.png",
277
+ "oF": 0,
278
+ "oIPL": 0,
279
+ "opt": 0,
280
+ "oT": 1,
281
+ "q": 100
282
+ },
283
+ "/admin/assets/img/arrows-dark-vs-2x.png": {
284
+ "ft": 32768,
285
+ "iS": 761,
286
+ "oA": 0,
287
+ "oAP": "/admin/assets/img/arrows-dark-vs-2x.png",
288
+ "oF": 0,
289
+ "oIPL": 0,
290
+ "opt": 0,
291
+ "oT": 1,
292
+ "q": 100
293
+ },
294
+ "/admin/assets/img/arrows-dark-vs.png": {
295
+ "ft": 32768,
296
+ "iS": 243,
297
+ "oA": 0,
298
+ "oAP": "/admin/assets/img/arrows-dark-vs.png",
299
+ "oF": 0,
300
+ "oIPL": 0,
301
+ "opt": 0,
302
+ "oT": 1,
303
+ "q": 100
304
+ },
305
+ "/admin/assets/img/arrows-dark.png": {
306
+ "ft": 32768,
307
+ "iS": 243,
308
+ "oA": 0,
309
+ "oAP": "/admin/assets/img/arrows-dark.png",
310
+ "oF": 0,
311
+ "oIPL": 0,
312
+ "opt": 0,
313
+ "oT": 1,
314
+ "q": 100
315
+ },
316
+ "/admin/assets/img/arrows-vs-2x.png": {
317
+ "ft": 32768,
318
+ "iS": 723,
319
+ "oA": 0,
320
+ "oAP": "/admin/assets/img/arrows-vs-2x.png",
321
+ "oF": 0,
322
+ "oIPL": 0,
323
+ "opt": 0,
324
+ "oT": 1,
325
+ "q": 100
326
+ },
327
+ "/admin/assets/img/arrows-vs.png": {
328
+ "ft": 32768,
329
+ "iS": 243,
330
+ "oA": 0,
331
+ "oAP": "/admin/assets/img/arrows-vs.png",
332
+ "oF": 0,
333
+ "oIPL": 0,
334
+ "opt": 0,
335
+ "oT": 1,
336
+ "q": 100
337
+ },
338
+ "/admin/assets/img/arrows.png": {
339
+ "ft": 32768,
340
+ "iS": 243,
341
+ "oA": 0,
342
+ "oAP": "/admin/assets/img/arrows.png",
343
+ "oF": 0,
344
+ "oIPL": 0,
345
+ "opt": 0,
346
+ "oT": 1,
347
+ "q": 100
348
+ },
349
+ "/admin/assets/img/index.php": {
350
+ "cB": 0,
351
+ "ft": 8192,
352
+ "hM": 0,
353
+ "oA": 0,
354
+ "oAP": "/admin/assets/img/index.php",
355
+ "oF": 0
356
+ },
357
+ "/admin/assets/img/vfb-form-items-2x.png": {
358
+ "ft": 32768,
359
+ "iS": 10585,
360
+ "oA": 0,
361
+ "oAP": "/admin/assets/img/vfb-form-items-2x.png",
362
+ "oF": 0,
363
+ "oIPL": 0,
364
+ "opt": 0,
365
+ "oT": 1,
366
+ "q": 100
367
+ },
368
+ "/admin/assets/img/vfb-form-items.png": {
369
+ "ft": 32768,
370
+ "iS": 4488,
371
+ "oA": 0,
372
+ "oAP": "/admin/assets/img/vfb-form-items.png",
373
+ "oF": 0,
374
+ "oIPL": 0,
375
+ "opt": 0,
376
+ "oT": 1,
377
+ "q": 100
378
+ },
379
+ "/admin/assets/img/vfb-interface-icons-2x.png": {
380
+ "ft": 32768,
381
+ "iS": 3320,
382
+ "oA": 0,
383
+ "oAP": "/admin/assets/img/vfb-interface-icons-2x.png",
384
+ "oF": 0,
385
+ "oIPL": 0,
386
+ "opt": 0,
387
+ "oT": 1,
388
+ "q": 100
389
+ },
390
+ "/admin/assets/img/vfb-interface-icons.png": {
391
+ "ft": 32768,
392
+ "iS": 1394,
393
+ "oA": 0,
394
+ "oAP": "/admin/assets/img/vfb-interface-icons.png",
395
+ "oF": 0,
396
+ "oIPL": 0,
397
+ "opt": 0,
398
+ "oT": 1,
399
+ "q": 100
400
+ },
401
+ "/admin/assets/index.php": {
402
+ "cB": 0,
403
+ "ft": 8192,
404
+ "hM": 0,
405
+ "oA": 0,
406
+ "oAP": "/admin/assets/index.php",
407
+ "oF": 0
408
+ },
409
+ "/admin/assets/js/index.php": {
410
+ "cB": 0,
411
+ "ft": 8192,
412
+ "hM": 0,
413
+ "oA": 0,
414
+ "oAP": "/admin/assets/js/index.php",
415
+ "oF": 0
416
+ },
417
+ "/admin/assets/js/jquery.ui.nestedSortable.js": {
418
+ "bF": 0,
419
+ "ft": 64,
420
+ "ma": 0,
421
+ "mi": 1,
422
+ "oA": 0,
423
+ "oAP": "/admin/assets/js/jquery.ui.nestedSortable-min.js",
424
+ "oF": 0,
425
+ "sC": 3,
426
+ "tS": 0
427
+ },
428
+ "/admin/assets/js/jquery.ui.nestedSortable.min.js": {
429
+ "bF": 0,
430
+ "ft": 64,
431
+ "ma": 0,
432
+ "mi": 1,
433
+ "oA": 0,
434
+ "oAP": "/admin/assets/js/jquery.ui.nestedSortable.min-min.js",
435
+ "oF": 0,
436
+ "sC": 3,
437
+ "tS": 0
438
+ },
439
+ "/admin/assets/js/jquery.validate.min.js": {
440
+ "bF": 0,
441
+ "ft": 64,
442
+ "ma": 0,
443
+ "mi": 1,
444
+ "oA": 0,
445
+ "oAP": "/admin/assets/js/jquery.validate.min-min.js",
446
+ "oF": 0,
447
+ "sC": 3,
448
+ "tS": 0
449
+ },
450
+ "/admin/assets/js/vfb-admin.js": {
451
+ "bF": 0,
452
+ "ft": 64,
453
+ "ma": 0,
454
+ "mi": 1,
455
+ "oA": 0,
456
+ "oAP": "/admin/assets/js/vfb-admin-min.js",
457
+ "oF": 0,
458
+ "sC": 3,
459
+ "tS": 0
460
+ },
461
+ "/admin/assets/js/vfb-admin.min.js": {
462
+ "bF": 0,
463
+ "ft": 64,
464
+ "ma": 0,
465
+ "mi": 1,
466
+ "oA": 0,
467
+ "oAP": "/admin/assets/js/vfb-admin.min-min.js",
468
+ "oF": 0,
469
+ "sC": 3,
470
+ "tS": 0
471
+ },
472
+ "/admin/assets/js/vfb-validation.js": {
473
+ "bF": 0,
474
+ "ft": 64,
475
+ "ma": 0,
476
+ "mi": 1,
477
+ "oA": 0,
478
+ "oAP": "/admin/assets/js/vfb-validation-min.js",
479
+ "oF": 0,
480
+ "sC": 3,
481
+ "tS": 0
482
+ },
483
+ "/admin/assets/js/vfb-validation.min.js": {
484
+ "bF": 0,
485
+ "ft": 64,
486
+ "ma": 0,
487
+ "mi": 1,
488
+ "oA": 0,
489
+ "oAP": "/admin/assets/js/vfb-validation.min-min.js",
490
+ "oF": 0,
491
+ "sC": 3,
492
+ "tS": 0
493
+ },
494
+ "/admin/class-admin-menu.php": {
495
+ "cB": 0,
496
+ "ft": 8192,
497
+ "hM": 0,
498
+ "oA": 0,
499
+ "oAP": "/admin/class-admin-menu.php",
500
+ "oF": 0
501
+ },
502
+ "/admin/class-admin-notices.php": {
503
+ "cB": 0,
504
+ "ft": 8192,
505
+ "hM": 0,
506
+ "oA": 0,
507
+ "oAP": "/admin/class-admin-notices.php",
508
+ "oF": 0
509
+ },
510
+ "/admin/class-ajax.php": {
511
+ "cB": 0,
512
+ "ft": 8192,
513
+ "hM": 0,
514
+ "oA": 0,
515
+ "oAP": "/admin/class-ajax.php",
516
+ "oF": 0
517
+ },
518
+ "/admin/class-dashboard-widgets.php": {
519
+ "cB": 0,
520
+ "ft": 8192,
521
+ "hM": 0,
522
+ "oA": 0,
523
+ "oAP": "/admin/class-dashboard-widgets.php",
524
+ "oF": 0
525
+ },
526
+ "/admin/class-entries-detail.php": {
527
+ "cB": 0,
528
+ "ft": 8192,
529
+ "hM": 0,
530
+ "oA": 0,
531
+ "oAP": "/admin/class-entries-detail.php",
532
+ "oF": 0
533
+ },
534
+ "/admin/class-entries-list.php": {
535
+ "cB": 0,
536
+ "ft": 8192,
537
+ "hM": 0,
538
+ "oA": 0,
539
+ "oAP": "/admin/class-entries-list.php",
540
+ "oF": 0
541
+ },
542
+ "/admin/class-export.php": {
543
+ "cB": 0,
544
+ "ft": 8192,
545
+ "hM": 0,
546
+ "oA": 0,
547
+ "oAP": "/admin/class-export.php",
548
+ "oF": 0
549
+ },
550
+ "/admin/class-fields.php": {
551
+ "cB": 0,
552
+ "ft": 8192,
553
+ "hM": 0,
554
+ "oA": 0,
555
+ "oAP": "/admin/class-fields.php",
556
+ "oF": 0
557
+ },
558
+ "/admin/class-forms-edit.php": {
559
+ "cB": 0,
560
+ "ft": 8192,
561
+ "hM": 0,
562
+ "oA": 0,
563
+ "oAP": "/admin/class-forms-edit.php",
564
+ "oF": 0
565
+ },
566
+ "/admin/class-forms-list.php": {
567
+ "cB": 0,
568
+ "ft": 8192,
569
+ "hM": 0,
570
+ "oA": 0,
571
+ "oAP": "/admin/class-forms-list.php",
572
+ "oF": 0
573
+ },
574
+ "/admin/class-forms-metaboxes.php": {
575
+ "cB": 0,
576
+ "ft": 8192,
577
+ "hM": 0,
578
+ "oA": 0,
579
+ "oAP": "/admin/class-forms-metaboxes.php",
580
+ "oF": 0
581
+ },
582
+ "/admin/class-forms-new.php": {
583
+ "cB": 0,
584
+ "ft": 8192,
585
+ "hM": 0,
586
+ "oA": 0,
587
+ "oAP": "/admin/class-forms-new.php",
588
+ "oF": 0
589
+ },
590
+ "/admin/class-load-css-js.php": {
591
+ "cB": 0,
592
+ "ft": 8192,
593
+ "hM": 0,
594
+ "oA": 0,
595
+ "oAP": "/admin/class-load-css-js.php",
596
+ "oF": 0
597
+ },
598
+ "/admin/class-media-button.php": {
599
+ "cB": 0,
600
+ "ft": 8192,
601
+ "hM": 0,
602
+ "oA": 0,
603
+ "oAP": "/admin/class-media-button.php",
604
+ "oF": 0
605
+ },
606
+ "/admin/class-page-settings.php": {
607
+ "cB": 0,
608
+ "ft": 8192,
609
+ "hM": 0,
610
+ "oA": 0,
611
+ "oAP": "/admin/class-page-settings.php",
612
+ "oF": 0
613
+ },
614
+ "/admin/class-save.php": {
615
+ "cB": 0,
616
+ "ft": 8192,
617
+ "hM": 0,
618
+ "oA": 0,
619
+ "oAP": "/admin/class-save.php",
620
+ "oF": 0
621
+ },
622
+ "/admin/class-screen-options.php": {
623
+ "cB": 0,
624
+ "ft": 8192,
625
+ "hM": 0,
626
+ "oA": 0,
627
+ "oAP": "/admin/class-screen-options.php",
628
+ "oF": 0
629
+ },
630
+ "/admin/class-widget.php": {
631
+ "cB": 0,
632
+ "ft": 8192,
633
+ "hM": 0,
634
+ "oA": 0,
635
+ "oAP": "/admin/class-widget.php",
636
+ "oF": 0
637
+ },
638
+ "/admin/index.php": {
639
+ "cB": 0,
640
+ "ft": 8192,
641
+ "hM": 0,
642
+ "oA": 0,
643
+ "oAP": "/admin/index.php",
644
+ "oF": 0
645
+ },
646
+ "/inc/class-i18n.php": {
647
+ "cB": 0,
648
+ "ft": 8192,
649
+ "hM": 0,
650
+ "oA": 0,
651
+ "oAP": "/inc/class-i18n.php",
652
+ "oF": 0
653
+ },
654
+ "/inc/class-install.php": {
655
+ "cB": 0,
656
+ "ft": 8192,
657
+ "hM": 0,
658
+ "oA": 0,
659
+ "oAP": "/inc/class-install.php",
660
+ "oF": 0
661
+ },
662
+ "/inc/class-list-table.php": {
663
+ "cB": 0,
664
+ "ft": 8192,
665
+ "hM": 0,
666
+ "oA": 0,
667
+ "oAP": "/inc/class-list-table.php",
668
+ "oF": 0
669
+ },
670
+ "/inc/class-uninstall.php": {
671
+ "cB": 0,
672
+ "ft": 8192,
673
+ "hM": 0,
674
+ "oA": 0,
675
+ "oAP": "/inc/class-uninstall.php",
676
+ "oF": 0
677
+ },
678
+ "/inc/countries.php": {
679
+ "cB": 0,
680
+ "ft": 8192,
681
+ "hM": 0,
682
+ "oA": 0,
683
+ "oAP": "/inc/countries.php",
684
+ "oF": 0
685
+ },
686
+ "/inc/index.php": {
687
+ "cB": 0,
688
+ "ft": 8192,
689
+ "hM": 0,
690
+ "oA": 0,
691
+ "oAP": "/inc/index.php",
692
+ "oF": 0
693
+ },
694
+ "/lang/visual-form-builder-bg_BG.mo": {
695
+ "cB": 0,
696
+ "ft": 8192,
697
+ "hM": 0,
698
+ "oA": 0,
699
+ "oAP": "/lang/visual-form-builder-bg_BG.mo",
700
+ "oF": 0
701
+ },
702
+ "/lang/visual-form-builder-bg_BG.po": {
703
+ "cB": 0,
704
+ "ft": 8192,
705
+ "hM": 0,
706
+ "oA": 0,
707
+ "oAP": "/lang/visual-form-builder-bg_BG.po",
708
+ "oF": 0
709
+ },
710
+ "/lang/visual-form-builder-es_ES.mo": {
711
+ "cB": 0,
712
+ "ft": 8192,
713
+ "hM": 0,
714
+ "oA": 0,
715
+ "oAP": "/lang/visual-form-builder-es_ES.mo",
716
+ "oF": 0
717
+ },
718
+ "/lang/visual-form-builder-es_ES.po": {
719
+ "cB": 0,
720
+ "ft": 8192,
721
+ "hM": 0,
722
+ "oA": 0,
723
+ "oAP": "/lang/visual-form-builder-es_ES.po",
724
+ "oF": 0
725
+ },
726
+ "/lang/visual-form-builder-fr_FR.mo": {
727
+ "cB": 0,
728
+ "ft": 8192,
729
+ "hM": 0,
730
+ "oA": 0,
731
+ "oAP": "/lang/visual-form-builder-fr_FR.mo",
732
+ "oF": 0
733
+ },
734
+ "/lang/visual-form-builder-fr_FR.po": {
735
+ "cB": 0,
736
+ "ft": 8192,
737
+ "hM": 0,
738
+ "oA": 0,
739
+ "oAP": "/lang/visual-form-builder-fr_FR.po",
740
+ "oF": 0
741
+ },
742
+ "/lang/visual-form-builder-hu_HU.mo": {
743
+ "cB": 0,
744
+ "ft": 8192,
745
+ "hM": 0,
746
+ "oA": 0,
747
+ "oAP": "/lang/visual-form-builder-hu_HU.mo",
748
+ "oF": 0
749
+ },
750
+ "/lang/visual-form-builder-hu_HU.po": {
751
+ "cB": 0,
752
+ "ft": 8192,
753
+ "hM": 0,
754
+ "oA": 0,
755
+ "oAP": "/lang/visual-form-builder-hu_HU.po",
756
+ "oF": 0
757
+ },
758
+ "/lang/visual-form-builder-nl_NL.mo": {
759
+ "cB": 0,
760
+ "ft": 8192,
761
+ "hM": 0,
762
+ "oA": 0,
763
+ "oAP": "/lang/visual-form-builder-nl_NL.mo",
764
+ "oF": 0
765
+ },
766
+ "/lang/visual-form-builder-nl_NL.po": {
767
+ "cB": 0,
768
+ "ft": 8192,
769
+ "hM": 0,
770
+ "oA": 0,
771
+ "oAP": "/lang/visual-form-builder-nl_NL.po",
772
+ "oF": 0
773
+ },
774
+ "/lang/visual-form-builder-pt_PT.mo": {
775
+ "cB": 0,
776
+ "ft": 8192,
777
+ "hM": 0,
778
+ "oA": 0,
779
+ "oAP": "/lang/visual-form-builder-pt_PT.mo",
780
+ "oF": 0
781
+ },
782
+ "/lang/visual-form-builder-pt_PT.po": {
783
+ "cB": 0,
784
+ "ft": 8192,
785
+ "hM": 0,
786
+ "oA": 0,
787
+ "oAP": "/lang/visual-form-builder-pt_PT.po",
788
+ "oF": 0
789
+ },
790
+ "/lang/visual-form-builder.pot": {
791
+ "cB": 0,
792
+ "ft": 8192,
793
+ "hM": 0,
794
+ "oA": 0,
795
+ "oAP": "/lang/visual-form-builder.pot",
796
+ "oF": 0
797
+ },
798
+ "/public/assets/css/index.php": {
799
+ "cB": 0,
800
+ "ft": 8192,
801
+ "hM": 0,
802
+ "oA": 0,
803
+ "oAP": "/public/assets/css/index.php",
804
+ "oF": 0
805
+ },
806
+ "/public/assets/css/smoothness/images/animated-overlay.gif": {
807
+ "ft": 4194304,
808
+ "iS": 1738,
809
+ "oA": 0,
810
+ "oAP": "/public/assets/css/smoothness/images/animated-overlay.gif",
811
+ "oF": 0,
812
+ "opt": 0
813
+ },
814
+ "/public/assets/css/smoothness/images/index.php": {
815
+ "cB": 0,
816
+ "ft": 8192,
817
+ "hM": 0,
818
+ "oA": 0,
819
+ "oAP": "/public/assets/css/smoothness/images/index.php",
820
+ "oF": 0
821
+ },
822
+ "/public/assets/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png": {
823
+ "ft": 32768,
824
+ "iS": 212,
825
+ "oA": 0,
826
+ "oAP": "/public/assets/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png",
827
+ "oF": 0,
828
+ "oIPL": 0,
829
+ "opt": 0,
830
+ "oT": 1,
831
+ "q": 100
832
+ },
833
+ "/public/assets/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png": {
834
+ "ft": 32768,
835
+ "iS": 208,
836
+ "oA": 0,
837
+ "oAP": "/public/assets/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png",
838
+ "oF": 0,
839
+ "oIPL": 0,
840
+ "opt": 0,
841
+ "oT": 1,
842
+ "q": 100
843
+ },
844
+ "/public/assets/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png": {
845
+ "ft": 32768,
846
+ "iS": 335,
847
+ "oA": 0,
848
+ "oAP": "/public/assets/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png",
849
+ "oF": 0,
850
+ "oIPL": 0,
851
+ "opt": 0,
852
+ "oT": 1,
853
+ "q": 100
854
+ },
855
+ "/public/assets/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png": {
856
+ "ft": 32768,
857
+ "iS": 207,
858
+ "oA": 0,
859
+ "oAP": "/public/assets/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png",
860
+ "oF": 0,
861
+ "oIPL": 0,
862
+ "opt": 0,
863
+ "oT": 1,
864
+ "q": 100
865
+ },
866
+ "/public/assets/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png": {
867
+ "ft": 32768,
868
+ "iS": 262,
869
+ "oA": 0,
870
+ "oAP": "/public/assets/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png",
871
+ "oF": 0,
872
+ "oIPL": 0,
873
+ "opt": 0,
874
+ "oT": 1,
875
+ "q": 100
876
+ },
877
+ "/public/assets/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png": {
878
+ "ft": 32768,
879
+ "iS": 262,
880
+ "oA": 0,
881
+ "oAP": "/public/assets/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png",
882
+ "oF": 0,
883
+ "oIPL": 0,
884
+ "opt": 0,
885
+ "oT": 1,
886
+ "q": 100
887
+ },
888
+ "/public/assets/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png": {
889
+ "ft": 32768,
890
+ "iS": 332,
891
+ "oA": 0,
892
+ "oAP": "/public/assets/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png",
893
+ "oF": 0,
894
+ "oIPL": 0,
895
+ "opt": 0,
896
+ "oT": 1,
897
+ "q": 100
898
+ },
899
+ "/public/assets/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png": {
900
+ "ft": 32768,
901
+ "iS": 280,
902
+ "oA": 0,
903
+ "oAP": "/public/assets/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png",
904
+ "oF": 0,
905
+ "oIPL": 0,
906
+ "opt": 0,
907
+ "oT": 1,
908
+ "q": 100
909
+ },
910
+ "/public/assets/css/smoothness/images/ui-icons_222222_256x240.png": {
911
+ "ft": 32768,
912
+ "iS": 6922,
913
+ "oA": 0,
914
+ "oAP": "/public/assets/css/smoothness/images/ui-icons_222222_256x240.png",
915
+ "oF": 0,
916
+ "oIPL": 0,
917
+ "opt": 0,
918
+ "oT": 1,
919
+ "q": 100
920
+ },
921
+ "/public/assets/css/smoothness/images/ui-icons_2e83ff_256x240.png": {
922
+ "ft": 32768,
923
+ "iS": 4549,
924
+ "oA": 0,
925
+ "oAP": "/public/assets/css/smoothness/images/ui-icons_2e83ff_256x240.png",
926
+ "oF": 0,
927
+ "oIPL": 0,
928
+ "opt": 0,
929
+ "oT": 1,
930
+ "q": 100
931
+ },
932
+ "/public/assets/css/smoothness/images/ui-icons_454545_256x240.png": {
933
+ "ft": 32768,
934
+ "iS": 6992,
935
+ "oA": 0,
936
+ "oAP": "/public/assets/css/smoothness/images/ui-icons_454545_256x240.png",
937
+ "oF": 0,
938
+ "oIPL": 0,
939
+ "opt": 0,
940
+ "oT": 1,
941
+ "q": 100
942
+ },
943
+ "/public/assets/css/smoothness/images/ui-icons_888888_256x240.png": {
944
+ "ft": 32768,
945
+ "iS": 6999,
946
+ "oA": 0,
947
+ "oAP": "/public/assets/css/smoothness/images/ui-icons_888888_256x240.png",
948
+ "oF": 0,
949
+ "oIPL": 0,
950
+ "opt": 0,
951
+ "oT": 1,
952
+ "q": 100
953
+ },
954
+ "/public/assets/css/smoothness/images/ui-icons_cd0a0a_256x240.png": {
955
+ "ft": 32768,
956
+ "iS": 4549,
957
+ "oA": 0,
958
+ "oAP": "/public/assets/css/smoothness/images/ui-icons_cd0a0a_256x240.png",
959
+ "oF": 0,
960
+ "oIPL": 0,
961
+ "opt": 0,
962
+ "oT": 1,
963
+ "q": 100
964
+ },
965
+ "/public/assets/css/smoothness/index.php": {
966
+ "cB": 0,
967
+ "ft": 8192,
968
+ "hM": 0,
969
+ "oA": 0,
970
+ "oAP": "/public/assets/css/smoothness/index.php",
971
+ "oF": 0
972
+ },
973
+ "/public/assets/css/smoothness/jquery-ui-1.10.3.css": {
974
+ "aP": 1,
975
+ "bl": 0,
976
+ "ft": 16,
977
+ "ma": 0,
978
+ "oA": 0,
979
+ "oAP": "/public/assets/css/smoothness/jquery-ui-1.10.3-min.css",
980
+ "oF": 0,
981
+ "oS": 3
982
+ },
983
+ "/public/assets/css/smoothness/jquery-ui-1.10.3.min.css": {
984
+ "aP": 1,
985
+ "bl": 0,
986
+ "ft": 16,
987
+ "ma": 0,
988
+ "oA": 0,
989
+ "oAP": "/public/assets/css/smoothness/jquery-ui-1.10.3.min-min.css",
990
+ "oF": 0,
991
+ "oS": 3
992
+ },
993
+ "/public/assets/css/visual-form-builder.css": {
994
+ "aP": 1,
995
+ "bl": 0,
996
+ "ft": 16,
997
+ "ma": 0,
998
+ "oA": 0,
999
+ "oAP": "/public/assets/css/visual-form-builder-min.css",
1000
+ "oF": 0,
1001
+ "oS": 3
1002
+ },
1003
+ "/public/assets/css/visual-form-builder.min.css": {
1004
+ "aP": 1,
1005
+ "bl": 0,
1006
+ "ft": 16,
1007
+ "ma": 0,
1008
+ "oA": 0,
1009
+ "oAP": "/public/assets/css/visual-form-builder.min-min.css",
1010
+ "oF": 0,
1011
+ "oS": 3
1012
+ },
1013
+ "/public/assets/index.php": {
1014
+ "cB": 0,
1015
+ "ft": 8192,
1016
+ "hM": 0,
1017
+ "oA": 0,
1018
+ "oAP": "/public/assets/index.php",
1019
+ "oF": 0
1020
+ },
1021
+ "/public/assets/js/ckeditor/ckeditor.js": {
1022
+ "bF": 0,
1023
+ "ft": 64,
1024
+ "ma": 0,
1025
+ "mi": 1,
1026
+ "oA": 0,
1027
+ "oAP": "/public/assets/js/ckeditor/ckeditor-min.js",
1028
+ "oF": 0,
1029
+ "sC": 3,
1030
+ "tS": 0
1031
+ },
1032
+ "/public/assets/js/ckeditor/config.js": {
1033
+ "bF": 0,
1034
+ "ft": 64,
1035
+ "ma": 0,
1036
+ "mi": 1,
1037
+ "oA": 0,
1038
+ "oAP": "/public/assets/js/ckeditor/config-min.js",
1039
+ "oF": 0,
1040
+ "sC": 3,
1041
+ "tS": 0
1042
+ },
1043
+ "/public/assets/js/ckeditor/contents.css": {
1044
+ "aP": 1,
1045
+ "bl": 0,
1046
+ "ft": 16,
1047
+ "ma": 0,
1048
+ "oA": 0,
1049
+ "oAP": "/public/assets/js/ckeditor/contents-min.css",
1050
+ "oF": 0,
1051
+ "oS": 3
1052
+ },
1053
+ "/public/assets/js/ckeditor/index.php": {
1054
+ "cB": 0,
1055
+ "ft": 8192,
1056
+ "hM": 0,
1057
+ "oA": 0,
1058
+ "oAP": "/public/assets/js/ckeditor/index.php",
1059
+ "oF": 0
1060
+ },
1061
+ "/public/assets/js/ckeditor/lang/en.js": {
1062
+ "bF": 0,
1063
+ "ft": 64,
1064
+ "ma": 0,
1065
+ "mi": 1,
1066
+ "oA": 0,
1067
+ "oAP": "/public/assets/js/ckeditor/lang/en-min.js",
1068
+ "oF": 0,
1069
+ "sC": 3,
1070
+ "tS": 0
1071
+ },
1072
+ "/public/assets/js/ckeditor/plugins/dialog/dialogDefinition.js": {
1073
+ "bF": 0,
1074
+ "ft": 64,
1075
+ "ma": 0,
1076
+ "mi": 1,
1077
+ "oA": 0,
1078
+ "oAP": "/public/assets/js/ckeditor/plugins/dialog/dialogDefinition-min.js",
1079
+ "oF": 0,
1080
+ "sC": 3,
1081
+ "tS": 0
1082
+ },
1083
+ "/public/assets/js/ckeditor/plugins/icons.png": {
1084
+ "ft": 32768,
1085
+ "iS": 10452,
1086
+ "oA": 0,
1087
+ "oAP": "/public/assets/js/ckeditor/plugins/icons.png",
1088
+ "oF": 0,
1089
+ "oIPL": 0,
1090
+ "opt": 0,
1091
+ "oT": 1,
1092
+ "q": 100
1093
+ },
1094
+ "/public/assets/js/ckeditor/plugins/link/dialogs/anchor.js": {
1095
+ "bF": 0,
1096
+ "ft": 64,
1097
+ "ma": 0,
1098
+ "mi": 1,
1099
+ "oA": 0,
1100
+ "oAP": "/public/assets/js/ckeditor/plugins/link/dialogs/anchor-min.js",
1101
+ "oF": 0,
1102
+ "sC": 3,
1103
+ "tS": 0
1104
+ },
1105
+ "/public/assets/js/ckeditor/plugins/link/dialogs/link.js": {
1106
+ "bF": 0,
1107
+ "ft": 64,
1108
+ "ma": 0,
1109
+ "mi": 1,
1110
+ "oA": 0,
1111
+ "oAP": "/public/assets/js/ckeditor/plugins/link/dialogs/link-min.js",
1112
+ "oF": 0,
1113
+ "sC": 3,
1114
+ "tS": 0
1115
+ },
1116
+ "/public/assets/js/ckeditor/plugins/link/images/anchor.png": {
1117
+ "ft": 32768,
1118
+ "iS": 566,
1119
+ "oA": 0,
1120
+ "oAP": "/public/assets/js/ckeditor/plugins/link/images/anchor.png",
1121
+ "oF": 0,
1122
+ "oIPL": 0,
1123
+ "opt": 0,
1124
+ "oT": 1,
1125
+ "q": 100
1126
+ },
1127
+ "/public/assets/js/ckeditor/skins/moono/dialog.css": {
1128
+ "aP": 1,
1129
+ "bl": 0,
1130
+ "ft": 16,
1131
+ "ma": 0,
1132
+ "oA": 0,
1133
+ "oAP": "/public/assets/js/ckeditor/skins/moono/dialog-min.css",
1134
+ "oF": 0,
1135
+ "oS": 3
1136
+ },
1137
+ "/public/assets/js/ckeditor/skins/moono/dialog_ie.css": {
1138
+ "aP": 1,
1139
+ "bl": 0,
1140
+ "ft": 16,
1141
+ "ma": 0,
1142
+ "oA": 0,
1143
+ "oAP": "/public/assets/js/ckeditor/skins/moono/dialog_ie-min.css",
1144
+ "oF": 0,
1145
+ "oS": 3
1146
+ },
1147
+ "/public/assets/js/ckeditor/skins/moono/dialog_ie7.css": {
1148
+ "aP": 1,
1149
+ "bl": 0,
1150
+ "ft": 16,
1151
+ "ma": 0,
1152
+ "oA": 0,
1153
+ "oAP": "/public/assets/js/ckeditor/skins/moono/dialog_ie7-min.css",
1154
+ "oF": 0,
1155
+ "oS": 3
1156
+ },
1157
+ "/public/assets/js/ckeditor/skins/moono/dialog_ie8.css": {
1158
+ "aP": 1,
1159
+ "bl": 0,
1160
+ "ft": 16,
1161
+ "ma": 0,
1162
+ "oA": 0,
1163
+ "oAP": "/public/assets/js/ckeditor/skins/moono/dialog_ie8-min.css",
1164
+ "oF": 0,
1165
+ "oS": 3
1166
+ },
1167
+ "/public/assets/js/ckeditor/skins/moono/dialog_iequirks.css": {
1168
+ "aP": 1,
1169
+ "bl": 0,
1170
+ "ft": 16,
1171
+ "ma": 0,
1172
+ "oA": 0,
1173
+ "oAP": "/public/assets/js/ckeditor/skins/moono/dialog_iequirks-min.css",
1174
+ "oF": 0,
1175
+ "oS": 3
1176
+ },
1177
+ "/public/assets/js/ckeditor/skins/moono/dialog_opera.css": {
1178
+ "aP": 1,
1179
+ "bl": 0,
1180
+ "ft": 16,
1181
+ "ma": 0,
1182
+ "oA": 0,
1183
+ "oAP": "/public/assets/js/ckeditor/skins/moono/dialog_opera-min.css",
1184
+ "oF": 0,
1185
+ "oS": 3
1186
+ },
1187
+ "/public/assets/js/ckeditor/skins/moono/editor.css": {
1188
+ "aP": 1,
1189
+ "bl": 0,
1190
+ "ft": 16,
1191
+ "ma": 0,
1192
+ "oA": 0,
1193
+ "oAP": "/public/assets/js/ckeditor/skins/moono/editor-min.css",
1194
+ "oF": 0,
1195
+ "oS": 3
1196
+ },
1197
+ "/public/assets/js/ckeditor/skins/moono/editor_gecko.css": {
1198
+ "aP": 1,
1199
+ "bl": 0,
1200
+ "ft": 16,
1201
+ "ma": 0,
1202
+ "oA": 0,
1203
+ "oAP": "/public/assets/js/ckeditor/skins/moono/editor_gecko-min.css",
1204
+ "oF": 0,
1205
+ "oS": 3
1206
+ },
1207
+ "/public/assets/js/ckeditor/skins/moono/editor_ie.css": {
1208
+ "aP": 1,
1209
+ "bl": 0,
1210
+ "ft": 16,
1211
+ "ma": 0,
1212
+ "oA": 0,
1213
+ "oAP": "/public/assets/js/ckeditor/skins/moono/editor_ie-min.css",
1214
+ "oF": 0,
1215
+ "oS": 3
1216
+ },
1217
+ "/public/assets/js/ckeditor/skins/moono/editor_ie7.css": {
1218
+ "aP": 1,
1219
+ "bl": 0,
1220
+ "ft": 16,
1221
+ "ma": 0,
1222
+ "oA": 0,
1223
+ "oAP": "/public/assets/js/ckeditor/skins/moono/editor_ie7-min.css",
1224
+ "oF": 0,
1225
+ "oS": 3
1226
+ },
1227
+ "/public/assets/js/ckeditor/skins/moono/editor_ie8.css": {
1228
+ "aP": 1,
1229
+ "bl": 0,
1230
+ "ft": 16,
1231
+ "ma": 0,
1232
+ "oA": 0,
1233
+ "oAP": "/public/assets/js/ckeditor/skins/moono/editor_ie8-min.css",
1234
+ "oF": 0,
1235
+ "oS": 3
1236
+ },
1237
+ "/public/assets/js/ckeditor/skins/moono/editor_iequirks.css": {
1238
+ "aP": 1,
1239
+ "bl": 0,
1240
+ "ft": 16,
1241
+ "ma": 0,
1242
+ "oA": 0,
1243
+ "oAP": "/public/assets/js/ckeditor/skins/moono/editor_iequirks-min.css",
1244
+ "oF": 0,
1245
+ "oS": 3
1246
+ },
1247
+ "/public/assets/js/ckeditor/skins/moono/icons.png": {
1248
+ "ft": 32768,
1249
+ "iS": 20881,
1250
+ "oA": 0,
1251
+ "oAP": "/public/assets/js/ckeditor/skins/moono/icons.png",
1252
+ "oF": 0,
1253
+ "oIPL": 0,
1254
+ "opt": 0,
1255
+ "oT": 1,
1256
+ "q": 100
1257
+ },
1258
+ "/public/assets/js/ckeditor/skins/moono/images/arrow.png": {
1259
+ "ft": 32768,
1260
+ "iS": 261,
1261
+ "oA": 0,
1262
+ "oAP": "/public/assets/js/ckeditor/skins/moono/images/arrow.png",
1263
+ "oF": 0,
1264
+ "oIPL": 0,
1265
+ "opt": 0,
1266
+ "oT": 1,
1267
+ "q": 100
1268
+ },
1269
+ "/public/assets/js/ckeditor/skins/moono/images/close.png": {
1270
+ "ft": 32768,
1271
+ "iS": 389,
1272
+ "oA": 0,
1273
+ "oAP": "/public/assets/js/ckeditor/skins/moono/images/close.png",
1274
+ "oF": 0,
1275
+ "oIPL": 0,
1276
+ "opt": 0,
1277
+ "oT": 1,
1278
+ "q": 100
1279
+ },
1280
+ "/public/assets/js/ckeditor/skins/moono/images/mini.png": {
1281
+ "ft": 32768,
1282
+ "iS": 818,
1283
+ "oA": 0,
1284
+ "oAP": "/public/assets/js/ckeditor/skins/moono/images/mini.png",
1285
+ "oF": 0,
1286
+ "oIPL": 0,
1287
+ "opt": 0,
1288
+ "oT": 1,
1289
+ "q": 100
1290
+ },
1291
+ "/public/assets/js/ckeditor/skins/moono/readme.md": {
1292
+ "cB": 0,
1293
+ "cS": 0,
1294
+ "eF": 1,
1295
+ "eL": 1,
1296
+ "ema": 1,
1297
+ "eSQ": 1,
1298
+ "ft": 4096,
1299
+ "hM": 0,
1300
+ "oA": 0,
1301
+ "oAP": "/public/assets/js/ckeditor/skins/moono/readme.html",
1302
+ "oF": 0,
1303
+ "oFM": 0,
1304
+ "oS": 0,
1305
+ "pHT": 0,
1306
+ "pME": 1,
1307
+ "rFN": 0,
1308
+ "uCM": 0
1309
+ },
1310
+ "/public/assets/js/i18n/datepicker/datepicker-cs_CS.js": {
1311
+ "bF": 0,
1312
+ "ft": 64,
1313
+ "ma": 0,
1314
+ "mi": 1,
1315
+ "oA": 0,
1316
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-cs_CS-min.js",
1317
+ "oF": 0,
1318
+ "sC": 3,
1319
+ "tS": 0
1320
+ },
1321
+ "/public/assets/js/i18n/datepicker/datepicker-de_DE.js": {
1322
+ "bF": 0,
1323
+ "ft": 64,
1324
+ "ma": 0,
1325
+ "mi": 1,
1326
+ "oA": 0,
1327
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-de_DE-min.js",
1328
+ "oF": 0,
1329
+ "sC": 3,
1330
+ "tS": 0
1331
+ },
1332
+ "/public/assets/js/i18n/datepicker/datepicker-el_GR.js": {
1333
+ "bF": 0,
1334
+ "ft": 64,
1335
+ "ma": 0,
1336
+ "mi": 1,
1337
+ "oA": 0,
1338
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-el_GR-min.js",
1339
+ "oF": 0,
1340
+ "sC": 3,
1341
+ "tS": 0
1342
+ },
1343
+ "/public/assets/js/i18n/datepicker/datepicker-en_AU.js": {
1344
+ "bF": 0,
1345
+ "ft": 64,
1346
+ "ma": 0,
1347
+ "mi": 1,
1348
+ "oA": 0,
1349
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-en_AU-min.js",
1350
+ "oF": 0,
1351
+ "sC": 3,
1352
+ "tS": 0
1353
+ },
1354
+ "/public/assets/js/i18n/datepicker/datepicker-en_GB.js": {
1355
+ "bF": 0,
1356
+ "ft": 64,
1357
+ "ma": 0,
1358
+ "mi": 1,
1359
+ "oA": 0,
1360
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-en_GB-min.js",
1361
+ "oF": 0,
1362
+ "sC": 3,
1363
+ "tS": 0
1364
+ },
1365
+ "/public/assets/js/i18n/datepicker/datepicker-en_US.js": {
1366
+ "bF": 0,
1367
+ "ft": 64,
1368
+ "ma": 0,
1369
+ "mi": 1,
1370
+ "oA": 0,
1371
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-en_US-min.js",
1372
+ "oF": 0,
1373
+ "sC": 3,
1374
+ "tS": 0
1375
+ },
1376
+ "/public/assets/js/i18n/datepicker/datepicker-es_ES.js": {
1377
+ "bF": 0,
1378
+ "ft": 64,
1379
+ "ma": 0,
1380
+ "mi": 1,
1381
+ "oA": 0,
1382
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-es_ES-min.js",
1383
+ "oF": 0,
1384
+ "sC": 3,
1385
+ "tS": 0
1386
+ },
1387
+ "/public/assets/js/i18n/datepicker/datepicker-fr_FR.js": {
1388
+ "bF": 0,
1389
+ "ft": 64,
1390
+ "ma": 0,
1391
+ "mi": 1,
1392
+ "oA": 0,
1393
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-fr_FR-min.js",
1394
+ "oF": 0,
1395
+ "sC": 3,
1396
+ "tS": 0
1397
+ },
1398
+ "/public/assets/js/i18n/datepicker/datepicker-he_IL.js": {
1399
+ "bF": 0,
1400
+ "ft": 64,
1401
+ "ma": 0,
1402
+ "mi": 1,
1403
+ "oA": 0,
1404
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-he_IL-min.js",
1405
+ "oF": 0,
1406
+ "sC": 3,
1407
+ "tS": 0
1408
+ },
1409
+ "/public/assets/js/i18n/datepicker/datepicker-hu_HU.js": {
1410
+ "bF": 0,
1411
+ "ft": 64,
1412
+ "ma": 0,
1413
+ "mi": 1,
1414
+ "oA": 0,
1415
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-hu_HU-min.js",
1416
+ "oF": 0,
1417
+ "sC": 3,
1418
+ "tS": 0
1419
+ },
1420
+ "/public/assets/js/i18n/datepicker/datepicker-id_ID.js": {
1421
+ "bF": 0,
1422
+ "ft": 64,
1423
+ "ma": 0,
1424
+ "mi": 1,
1425
+ "oA": 0,
1426
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-id_ID-min.js",
1427
+ "oF": 0,
1428
+ "sC": 3,
1429
+ "tS": 0
1430
+ },
1431
+ "/public/assets/js/i18n/datepicker/datepicker-it_IT.js": {
1432
+ "bF": 0,
1433
+ "ft": 64,
1434
+ "ma": 0,
1435
+ "mi": 1,
1436
+ "oA": 0,
1437
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-it_IT-min.js",
1438
+ "oF": 0,
1439
+ "sC": 3,
1440
+ "tS": 0
1441
+ },
1442
+ "/public/assets/js/i18n/datepicker/datepicker-ja_JP.js": {
1443
+ "bF": 0,
1444
+ "ft": 64,
1445
+ "ma": 0,
1446
+ "mi": 1,
1447
+ "oA": 0,
1448
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-ja_JP-min.js",
1449
+ "oF": 0,
1450
+ "sC": 3,
1451
+ "tS": 0
1452
+ },
1453
+ "/public/assets/js/i18n/datepicker/datepicker-ko_KR.js": {
1454
+ "bF": 0,
1455
+ "ft": 64,
1456
+ "ma": 0,
1457
+ "mi": 1,
1458
+ "oA": 0,
1459
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-ko_KR-min.js",
1460
+ "oF": 0,
1461
+ "sC": 3,
1462
+ "tS": 0
1463
+ },
1464
+ "/public/assets/js/i18n/datepicker/datepicker-nl_NL.js": {
1465
+ "bF": 0,
1466
+ "ft": 64,
1467
+ "ma": 0,
1468
+ "mi": 1,
1469
+ "oA": 0,
1470
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-nl_NL-min.js",
1471
+ "oF": 0,
1472
+ "sC": 3,
1473
+ "tS": 0
1474
+ },
1475
+ "/public/assets/js/i18n/datepicker/datepicker-pl_PL.js": {
1476
+ "bF": 0,
1477
+ "ft": 64,
1478
+ "ma": 0,
1479
+ "mi": 1,
1480
+ "oA": 0,
1481
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-pl_PL-min.js",
1482
+ "oF": 0,
1483
+ "sC": 3,
1484
+ "tS": 0
1485
+ },
1486
+ "/public/assets/js/i18n/datepicker/datepicker-pt_BR.js": {
1487
+ "bF": 0,
1488
+ "ft": 64,
1489
+ "ma": 0,
1490
+ "mi": 1,
1491
+ "oA": 0,
1492
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-pt_BR-min.js",
1493
+ "oF": 0,
1494
+ "sC": 3,
1495
+ "tS": 0
1496
+ },
1497
+ "/public/assets/js/i18n/datepicker/datepicker-pt_PT.js": {
1498
+ "bF": 0,
1499
+ "ft": 64,
1500
+ "ma": 0,
1501
+ "mi": 1,
1502
+ "oA": 0,
1503
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-pt_PT-min.js",
1504
+ "oF": 0,
1505
+ "sC": 3,
1506
+ "tS": 0
1507
+ },
1508
+ "/public/assets/js/i18n/datepicker/datepicker-ro_RO.js": {
1509
+ "bF": 0,
1510
+ "ft": 64,
1511
+ "ma": 0,
1512
+ "mi": 1,
1513
+ "oA": 0,
1514
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-ro_RO-min.js",
1515
+ "oF": 0,
1516
+ "sC": 3,
1517
+ "tS": 0
1518
+ },
1519
+ "/public/assets/js/i18n/datepicker/datepicker-ru_RU.js": {
1520
+ "bF": 0,
1521
+ "ft": 64,
1522
+ "ma": 0,
1523
+ "mi": 1,
1524
+ "oA": 0,
1525
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-ru_RU-min.js",
1526
+ "oF": 0,
1527
+ "sC": 3,
1528
+ "tS": 0
1529
+ },
1530
+ "/public/assets/js/i18n/datepicker/datepicker-sv_SE.js": {
1531
+ "bF": 0,
1532
+ "ft": 64,
1533
+ "ma": 0,
1534
+ "mi": 1,
1535
+ "oA": 0,
1536
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-sv_SE-min.js",
1537
+ "oF": 0,
1538
+ "sC": 3,
1539
+ "tS": 0
1540
+ },
1541
+ "/public/assets/js/i18n/datepicker/datepicker-tr_TR.js": {
1542
+ "bF": 0,
1543
+ "ft": 64,
1544
+ "ma": 0,
1545
+ "mi": 1,
1546
+ "oA": 0,
1547
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-tr_TR-min.js",
1548
+ "oF": 0,
1549
+ "sC": 3,
1550
+ "tS": 0
1551
+ },
1552
+ "/public/assets/js/i18n/datepicker/datepicker-zh_CN.js": {
1553
+ "bF": 0,
1554
+ "ft": 64,
1555
+ "ma": 0,
1556
+ "mi": 1,
1557
+ "oA": 0,
1558
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-zh_CN-min.js",
1559
+ "oF": 0,
1560
+ "sC": 3,
1561
+ "tS": 0
1562
+ },
1563
+ "/public/assets/js/i18n/datepicker/datepicker-zh_TW.js": {
1564
+ "bF": 0,
1565
+ "ft": 64,
1566
+ "ma": 0,
1567
+ "mi": 1,
1568
+ "oA": 0,
1569
+ "oAP": "/public/assets/js/i18n/datepicker/datepicker-zh_TW-min.js",
1570
+ "oF": 0,
1571
+ "sC": 3,
1572
+ "tS": 0
1573
+ },
1574
+ "/public/assets/js/i18n/datepicker/index.php": {
1575
+ "cB": 0,
1576
+ "ft": 8192,
1577
+ "hM": 0,
1578
+ "oA": 0,
1579
+ "oAP": "/public/assets/js/i18n/datepicker/index.php",
1580
+ "oF": 0
1581
+ },
1582
+ "/public/assets/js/i18n/index.php": {
1583
+ "cB": 0,
1584
+ "ft": 8192,
1585
+ "hM": 0,
1586
+ "oA": 0,
1587
+ "oAP": "/public/assets/js/i18n/index.php",
1588
+ "oF": 0
1589
+ },
1590
+ "/public/assets/js/i18n/validate/index.php": {
1591
+ "cB": 0,
1592
+ "ft": 8192,
1593
+ "hM": 0,
1594
+ "oA": 0,
1595
+ "oAP": "/public/assets/js/i18n/validate/index.php",
1596
+ "oF": 0
1597
+ },
1598
+ "/public/assets/js/i18n/validate/messages-cs_CS.js": {
1599
+ "bF": 0,
1600
+ "ft": 64,
1601
+ "ma": 0,
1602
+ "mi": 1,
1603
+ "oA": 0,
1604
+ "oAP": "/public/assets/js/i18n/validate/messages-cs_CS-min.js",
1605
+ "oF": 0,
1606
+ "sC": 3,
1607
+ "tS": 0
1608
+ },
1609
+ "/public/assets/js/i18n/validate/messages-de_DE.js": {
1610
+ "bF": 0,
1611
+ "ft": 64,
1612
+ "ma": 0,
1613
+ "mi": 1,
1614
+ "oA": 0,
1615
+ "oAP": "/public/assets/js/i18n/validate/messages-de_DE-min.js",
1616
+ "oF": 0,
1617
+ "sC": 3,
1618
+ "tS": 0
1619
+ },
1620
+ "/public/assets/js/i18n/validate/messages-el_GR.js": {
1621
+ "bF": 0,
1622
+ "ft": 64,
1623
+ "ma": 0,
1624
+ "mi": 1,
1625
+ "oA": 0,
1626
+ "oAP": "/public/assets/js/i18n/validate/messages-el_GR-min.js",
1627
+ "oF": 0,
1628
+ "sC": 3,
1629
+ "tS": 0
1630
+ },
1631
+ "/public/assets/js/i18n/validate/messages-en_AU.js": {
1632
+ "bF": 0,
1633
+ "ft": 64,
1634
+ "ma": 0,
1635
+ "mi": 1,
1636
+ "oA": 0,
1637
+ "oAP": "/public/assets/js/i18n/validate/messages-en_AU-min.js",
1638
+ "oF": 0,
1639
+ "sC": 3,
1640
+ "tS": 0
1641
+ },
1642
+ "/public/assets/js/i18n/validate/messages-en_GB.js": {
1643
+ "bF": 0,
1644
+ "ft": 64,
1645
+ "ma": 0,
1646
+ "mi": 1,
1647
+ "oA": 0,
1648
+ "oAP": "/public/assets/js/i18n/validate/messages-en_GB-min.js",
1649
+ "oF": 0,
1650
+ "sC": 3,
1651
+ "tS": 0
1652
+ },
1653
+ "/public/assets/js/i18n/validate/messages-en_US.js": {
1654
+ "bF": 0,
1655
+ "ft": 64,
1656
+ "ma": 0,
1657
+ "mi": 1,
1658
+ "oA": 0,
1659
+ "oAP": "/public/assets/js/i18n/validate/messages-en_US-min.js",
1660
+ "oF": 0,
1661
+ "sC": 3,
1662
+ "tS": 0
1663
+ },
1664
+ "/public/assets/js/i18n/validate/messages-es_ES.js": {
1665
+ "bF": 0,
1666
+ "ft": 64,
1667
+ "ma": 0,
1668
+ "mi": 1,
1669
+ "oA": 0,
1670
+ "oAP": "/public/assets/js/i18n/validate/messages-es_ES-min.js",
1671
+ "oF": 0,
1672
+ "sC": 3,
1673
+ "tS": 0
1674
+ },
1675
+ "/public/assets/js/i18n/validate/messages-fr_FR.js": {
1676
+ "bF": 0,
1677
+ "ft": 64,
1678
+ "ma": 0,
1679
+ "mi": 1,
1680
+ "oA": 0,
1681
+ "oAP": "/public/assets/js/i18n/validate/messages-fr_FR-min.js",
1682
+ "oF": 0,
1683
+ "sC": 3,
1684
+ "tS": 0
1685
+ },
1686
+ "/public/assets/js/i18n/validate/messages-he_IL.js": {
1687
+ "bF": 0,
1688
+ "ft": 64,
1689
+ "ma": 0,
1690
+ "mi": 1,
1691
+ "oA": 0,
1692
+ "oAP": "/public/assets/js/i18n/validate/messages-he_IL-min.js",
1693
+ "oF": 0,
1694
+ "sC": 3,
1695
+ "tS": 0
1696
+ },
1697
+ "/public/assets/js/i18n/validate/messages-hu_HU.js": {
1698
+ "bF": 0,
1699
+ "ft": 64,
1700
+ "ma": 0,
1701
+ "mi": 1,
1702
+ "oA": 0,
1703
+ "oAP": "/public/assets/js/i18n/validate/messages-hu_HU-min.js",
1704
+ "oF": 0,
1705
+ "sC": 3,
1706
+ "tS": 0
1707
+ },
1708
+ "/public/assets/js/i18n/validate/messages-id_ID.js": {
1709
+ "bF": 0,
1710
+ "ft": 64,
1711
+ "ma": 0,
1712
+ "mi": 1,
1713
+ "oA": 0,
1714
+ "oAP": "/public/assets/js/i18n/validate/messages-id_ID-min.js",
1715
+ "oF": 0,
1716
+ "sC": 3,
1717
+ "tS": 0
1718
+ },
1719
+ "/public/assets/js/i18n/validate/messages-it_IT.js": {
1720
+ "bF": 0,
1721
+ "ft": 64,
1722
+ "ma": 0,
1723
+ "mi": 1,
1724
+ "oA": 0,
1725
+ "oAP": "/public/assets/js/i18n/validate/messages-it_IT-min.js",
1726
+ "oF": 0,
1727
+ "sC": 3,
1728
+ "tS": 0
1729
+ },
1730
+ "/public/assets/js/i18n/validate/messages-ja_JP.js": {
1731
+ "bF": 0,
1732
+ "ft": 64,
1733
+ "ma": 0,
1734
+ "mi": 1,
1735
+ "oA": 0,
1736
+ "oAP": "/public/assets/js/i18n/validate/messages-ja_JP-min.js",
1737
+ "oF": 0,
1738
+ "sC": 3,
1739
+ "tS": 0
1740
+ },
1741
+ "/public/assets/js/i18n/validate/messages-ko_KR.js": {
1742
+ "bF": 0,
1743
+ "ft": 64,
1744
+ "ma": 0,
1745
+ "mi": 1,
1746
+ "oA": 0,
1747
+ "oAP": "/public/assets/js/i18n/validate/messages-ko_KR-min.js",
1748
+ "oF": 0,
1749
+ "sC": 3,
1750
+ "tS": 0
1751
+ },
1752
+ "/public/assets/js/i18n/validate/messages-nl_NL.js": {
1753
+ "bF": 0,
1754
+ "ft": 64,
1755
+ "ma": 0,
1756
+ "mi": 1,
1757
+ "oA": 0,
1758
+ "oAP": "/public/assets/js/i18n/validate/messages-nl_NL-min.js",
1759
+ "oF": 0,
1760
+ "sC": 3,
1761
+ "tS": 0
1762
+ },
1763
+ "/public/assets/js/i18n/validate/messages-pl_PL.js": {
1764
+ "bF": 0,
1765
+ "ft": 64,
1766
+ "ma": 0,
1767
+ "mi": 1,
1768
+ "oA": 0,
1769
+ "oAP": "/public/assets/js/i18n/validate/messages-pl_PL-min.js",
1770
+ "oF": 0,
1771
+ "sC": 3,
1772
+ "tS": 0
1773
+ },
1774
+ "/public/assets/js/i18n/validate/messages-pt_BR.js": {
1775
+ "bF": 0,
1776
+ "ft": 64,
1777
+ "ma": 0,
1778
+ "mi": 1,
1779
+ "oA": 0,
1780
+ "oAP": "/public/assets/js/i18n/validate/messages-pt_BR-min.js",
1781
+ "oF": 0,
1782
+ "sC": 3,
1783
+ "tS": 0
1784
+ },
1785
+ "/public/assets/js/i18n/validate/messages-pt_PT.js": {
1786
+ "bF": 0,
1787
+ "ft": 64,
1788
+ "ma": 0,
1789
+ "mi": 1,
1790
+ "oA": 0,
1791
+ "oAP": "/public/assets/js/i18n/validate/messages-pt_PT-min.js",
1792
+ "oF": 0,
1793
+ "sC": 3,
1794
+ "tS": 0
1795
+ },
1796
+ "/public/assets/js/i18n/validate/messages-ro_RO.js": {
1797
+ "bF": 0,
1798
+ "ft": 64,
1799
+ "ma": 0,
1800
+ "mi": 1,
1801
+ "oA": 0,
1802
+ "oAP": "/public/assets/js/i18n/validate/messages-ro_RO-min.js",
1803
+ "oF": 0,
1804
+ "sC": 3,
1805
+ "tS": 0
1806
+ },
1807
+ "/public/assets/js/i18n/validate/messages-ru_RU.js": {
1808
+ "bF": 0,
1809
+ "ft": 64,
1810
+ "ma": 0,
1811
+ "mi": 1,
1812
+ "oA": 0,
1813
+ "oAP": "/public/assets/js/i18n/validate/messages-ru_RU-min.js",
1814
+ "oF": 0,
1815
+ "sC": 3,
1816
+ "tS": 0
1817
+ },
1818
+ "/public/assets/js/i18n/validate/messages-sv_SE.js": {
1819
+ "bF": 0,
1820
+ "ft": 64,
1821
+ "ma": 0,
1822
+ "mi": 1,
1823
+ "oA": 0,
1824
+ "oAP": "/public/assets/js/i18n/validate/messages-sv_SE-min.js",
1825
+ "oF": 0,
1826
+ "sC": 3,
1827
+ "tS": 0
1828
+ },
1829
+ "/public/assets/js/i18n/validate/messages-tr_TR.js": {
1830
+ "bF": 0,
1831
+ "ft": 64,
1832
+ "ma": 0,
1833
+ "mi": 1,
1834
+ "oA": 0,
1835
+ "oAP": "/public/assets/js/i18n/validate/messages-tr_TR-min.js",
1836
+ "oF": 0,
1837
+ "sC": 3,
1838
+ "tS": 0
1839
+ },
1840
+ "/public/assets/js/i18n/validate/messages-zh_CN.js": {
1841
+ "bF": 0,
1842
+ "ft": 64,
1843
+ "ma": 0,
1844
+ "mi": 1,
1845
+ "oA": 0,
1846
+ "oAP": "/public/assets/js/i18n/validate/messages-zh_CN-min.js",
1847
+ "oF": 0,
1848
+ "sC": 3,
1849
+ "tS": 0
1850
+ },
1851
+ "/public/assets/js/i18n/validate/messages-zh_TW.js": {
1852
+ "bF": 0,
1853
+ "ft": 64,
1854
+ "ma": 0,
1855
+ "mi": 1,
1856
+ "oA": 0,
1857
+ "oAP": "/public/assets/js/i18n/validate/messages-zh_TW-min.js",
1858
+ "oF": 0,
1859
+ "sC": 3,
1860
+ "tS": 0
1861
+ },
1862
+ "/public/assets/js/index.php": {
1863
+ "cB": 0,
1864
+ "ft": 8192,
1865
+ "hM": 0,
1866
+ "oA": 0,
1867
+ "oAP": "/public/assets/js/index.php",
1868
+ "oF": 0
1869
+ },
1870
+ "/public/assets/js/jquery.metadata.js": {
1871
+ "bF": 0,
1872
+ "ft": 64,
1873
+ "ma": 0,
1874
+ "mi": 1,
1875
+ "oA": 0,
1876
+ "oAP": "/public/assets/js/jquery.metadata-min.js",
1877
+ "oF": 0,
1878
+ "sC": 3,
1879
+ "tS": 0
1880
+ },
1881
+ "/public/assets/js/jquery.validate.min.js": {
1882
+ "bF": 0,
1883
+ "ft": 64,
1884
+ "ma": 0,
1885
+ "mi": 1,
1886
+ "oA": 0,
1887
+ "oAP": "/public/assets/js/jquery.validate.min-min.js",
1888
+ "oF": 0,
1889
+ "sC": 3,
1890
+ "tS": 0
1891
+ },
1892
+ "/public/assets/js/vfb-validation.js": {
1893
+ "bF": 0,
1894
+ "ft": 64,
1895
+ "ma": 0,
1896
+ "mi": 1,
1897
+ "oA": 0,
1898
+ "oAP": "/public/assets/js/vfb-validation-min.js",
1899
+ "oF": 0,
1900
+ "sC": 3,
1901
+ "tS": 0
1902
+ },
1903
+ "/public/assets/js/vfb-validation.min.js": {
1904
+ "bF": 0,
1905
+ "ft": 64,
1906
+ "ma": 0,
1907
+ "mi": 1,
1908
+ "oA": 0,
1909
+ "oAP": "/public/assets/js/vfb-validation.min-min.js",
1910
+ "oF": 0,
1911
+ "sC": 3,
1912
+ "tS": 0
1913
+ },
1914
+ "/public/class-confirmation.php": {
1915
+ "cB": 0,
1916
+ "ft": 8192,
1917
+ "hM": 0,
1918
+ "oA": 0,
1919
+ "oAP": "/public/class-confirmation.php",
1920
+ "oF": 0
1921
+ },
1922
+ "/public/class-email.php": {
1923
+ "cB": 0,
1924
+ "ft": 8192,
1925
+ "hM": 0,
1926
+ "oA": 0,
1927
+ "oAP": "/public/class-email.php",
1928
+ "oF": 0
1929
+ },
1930
+ "/public/class-form-display.php": {
1931
+ "cB": 0,
1932
+ "ft": 8192,
1933
+ "hM": 0,
1934
+ "oA": 0,
1935
+ "oAP": "/public/class-form-display.php",
1936
+ "oF": 0
1937
+ },
1938
+ "/public/class-load-css-js.php": {
1939
+ "cB": 0,
1940
+ "ft": 8192,
1941
+ "hM": 0,
1942
+ "oA": 0,
1943
+ "oAP": "/public/class-load-css-js.php",
1944
+ "oF": 0
1945
+ },
1946
+ "/public/class-security.php": {
1947
+ "cB": 0,
1948
+ "ft": 8192,
1949
+ "hM": 0,
1950
+ "oA": 0,
1951
+ "oAP": "/public/class-security.php",
1952
+ "oF": 0
1953
+ },
1954
+ "/public/index.php": {
1955
+ "cB": 0,
1956
+ "ft": 8192,
1957
+ "hM": 0,
1958
+ "oA": 0,
1959
+ "oAP": "/public/index.php",
1960
+ "oF": 0
1961
+ },
1962
+ "/readme.txt": {
1963
+ "cB": 0,
1964
+ "ft": 8192,
1965
+ "hM": 0,
1966
+ "oA": 0,
1967
+ "oAP": "/readme.txt",
1968
+ "oF": 0
1969
+ },
1970
+ "/visual-form-builder.php": {
1971
+ "cB": 0,
1972
+ "ft": 8192,
1973
+ "hM": 0,
1974
+ "oA": 0,
1975
+ "oAP": "/visual-form-builder.php",
1976
+ "oF": 0
1977
+ }
1978
+ },
1979
+ "hooks": [
1980
+ ],
1981
+ "manualImportLinks": {
1982
+ },
1983
+ "projectAttributes": {
1984
+ "creationDate": 575861298.45185101,
1985
+ "displayValue": "visual-form-builder",
1986
+ "displayValueWasSetByUser": 0,
1987
+ "iconImageName": "brackets_teal",
1988
+ "iconImageWasSetByUser": 1
1989
+ },
1990
+ "projectSettings": {
1991
+ "abortBuildOnError": 1,
1992
+ "alwaysUseExternalServer": 0,
1993
+ "animateCSSInjections": 1,
1994
+ "autoBuildNewItems": 1,
1995
+ "autoprefixerEnableIEGrid": 0,
1996
+ "babel7PresetType": 1,
1997
+ "babelAllowRCFiles": 0,
1998
+ "babelAuxiliaryCommentAfter": "",
1999
+ "babelAuxiliaryCommentBefore": "",
2000
+ "babelConfigType": 0,
2001
+ "babelCustomPluginsList": "",
2002
+ "babelCustomPresetsList": "",
2003
+ "babelInsertModuleIDs": 0,
2004
+ "babelModuleID": "",
2005
+ "babelNoComments": 0,
2006
+ "babelPlugins": {
2007
+ "arrow-functions": {
2008
+ "active": 0
2009
+ },
2010
+ "async-generator-functions": {
2011
+ "active": 0
2012
+ },
2013
+ "async-to-generator": {
2014
+ "active": 0
2015
+ },
2016
+ "block-scoped-functions": {
2017
+ "active": 0
2018
+ },
2019
+ "block-scoping": {
2020
+ "active": 0
2021
+ },
2022
+ "class-properties": {
2023
+ "active": 0
2024
+ },
2025
+ "classes": {
2026
+ "active": 0
2027
+ },
2028
+ "computed-properties": {
2029
+ "active": 0
2030
+ },
2031
+ "decorators": {
2032
+ "active": 0
2033
+ },
2034
+ "destructuring": {
2035
+ "active": 0
2036
+ },
2037
+ "do-expressions": {
2038
+ "active": 0
2039
+ },
2040
+ "dotall-regex": {
2041
+ "active": 0
2042
+ },
2043
+ "duplicate-keys": {
2044
+ "active": 0
2045
+ },
2046
+ "exponentiation-operator": {
2047
+ "active": 0
2048
+ },
2049
+ "export-default-from": {
2050
+ "active": 0
2051
+ },
2052
+ "export-namespace-from": {
2053
+ "active": 0
2054
+ },
2055
+ "external-helpers": {
2056
+ "active": 0
2057
+ },
2058
+ "flow-strip-types": {
2059
+ "active": 0
2060
+ },
2061
+ "for-of": {
2062
+ "active": 0
2063
+ },
2064
+ "function-bind": {
2065
+ "active": 0
2066
+ },
2067
+ "function-name": {
2068
+ "active": 0
2069
+ },
2070
+ "function-sent": {
2071
+ "active": 0
2072
+ },
2073
+ "inline-consecutive-adds": {
2074
+ "active": 0
2075
+ },
2076
+ "inline-environment-variables": {
2077
+ "active": 0
2078
+ },
2079
+ "instanceof": {
2080
+ "active": 0
2081
+ },
2082
+ "jscript": {
2083
+ "active": 0
2084
+ },
2085
+ "literals": {
2086
+ "active": 0
2087
+ },
2088
+ "logical-assignment-operators": {
2089
+ "active": 0
2090
+ },
2091
+ "member-expression-literals": {
2092
+ "active": 0
2093
+ },
2094
+ "merge-sibling-variables": {
2095
+ "active": 0
2096
+ },
2097
+ "minify-booleans": {
2098
+ "active": 0
2099
+ },
2100
+ "minify-builtins": {
2101
+ "active": 0
2102
+ },
2103
+ "minify-constant-folding": {
2104
+ "active": 0
2105
+ },
2106
+ "minify-dead-code-elimination": {
2107
+ "active": 0
2108
+ },
2109
+ "minify-flip-comparisons": {
2110
+ "active": 0
2111
+ },
2112
+ "minify-guarded-expressions": {
2113
+ "active": 0
2114
+ },
2115
+ "minify-infinity": {
2116
+ "active": 0
2117
+ },
2118
+ "minify-mangle-names": {
2119
+ "active": 0
2120
+ },
2121
+ "minify-numeric-literals": {
2122
+ "active": 0
2123
+ },
2124
+ "minify-simplify": {
2125
+ "active": 0
2126
+ },
2127
+ "minify-type-constructors": {
2128
+ "active": 0
2129
+ },
2130
+ "modules-amd": {
2131
+ "active": 0
2132
+ },
2133
+ "modules-commonjs": {
2134
+ "active": 0
2135
+ },
2136
+ "modules-systemjs": {
2137
+ "active": 0
2138
+ },
2139
+ "modules-umd": {
2140
+ "active": 0
2141
+ },
2142
+ "new-target": {
2143
+ "active": 0
2144
+ },
2145
+ "node-env-inline": {
2146
+ "active": 0
2147
+ },
2148
+ "nullish-coalescing-operator": {
2149
+ "active": 0
2150
+ },
2151
+ "numeric-separator": {
2152
+ "active": 0
2153
+ },
2154
+ "object-assign": {
2155
+ "active": 0
2156
+ },
2157
+ "object-rest-spread": {
2158
+ "active": 0
2159
+ },
2160
+ "object-set-prototype-of-to-assign": {
2161
+ "active": 0
2162
+ },
2163
+ "object-super": {
2164
+ "active": 0
2165
+ },
2166
+ "optional-catch-binding": {
2167
+ "active": 0
2168
+ },
2169
+ "optional-chaining": {
2170
+ "active": 0
2171
+ },
2172
+ "parameters": {
2173
+ "active": 0
2174
+ },
2175
+ "pipeline-operator": {
2176
+ "active": 0
2177
+ },
2178
+ "private-methods": {
2179
+ "active": 0
2180
+ },
2181
+ "property-literals": {
2182
+ "active": 0
2183
+ },
2184
+ "property-mutators": {
2185
+ "active": 0
2186
+ },
2187
+ "proto-to-assign": {
2188
+ "active": 0
2189
+ },
2190
+ "react-constant-elements": {
2191
+ "active": 0
2192
+ },
2193
+ "react-display-name": {
2194
+ "active": 0
2195
+ },
2196
+ "react-inline-elements": {
2197
+ "active": 0
2198
+ },
2199
+ "react-jsx": {
2200
+ "active": 0
2201
+ },
2202
+ "react-jsx-compat": {
2203
+ "active": 0
2204
+ },
2205
+ "react-jsx-self": {
2206
+ "active": 0
2207
+ },
2208
+ "react-jsx-source": {
2209
+ "active": 0
2210
+ },
2211
+ "regenerator": {
2212
+ "active": 0
2213
+ },
2214
+ "regexp-constructors": {
2215
+ "active": 0
2216
+ },
2217
+ "remove-console": {
2218
+ "active": 0
2219
+ },
2220
+ "remove-debugger": {
2221
+ "active": 0
2222
+ },
2223
+ "remove-undefined": {
2224
+ "active": 0
2225
+ },
2226
+ "reserved-words": {
2227
+ "active": 0
2228
+ },
2229
+ "runtime": {
2230
+ "active": 0
2231
+ },
2232
+ "shorthand-properties": {
2233
+ "active": 0
2234
+ },
2235
+ "simplify-comparison-operators": {
2236
+ "active": 0
2237
+ },
2238
+ "spread": {
2239
+ "active": 0
2240
+ },
2241
+ "sticky-regex": {
2242
+ "active": 0
2243
+ },
2244
+ "strict-mode": {
2245
+ "active": 0
2246
+ },
2247
+ "template-literals": {
2248
+ "active": 0
2249
+ },
2250
+ "throw-expressions": {
2251
+ "active": 0
2252
+ },
2253
+ "typeof-symbol": {
2254
+ "active": 0
2255
+ },
2256
+ "undefined-to-void": {
2257
+ "active": 0
2258
+ },
2259
+ "unicode-property-regex": {
2260
+ "active": 0
2261
+ },
2262
+ "unicode-regex": {
2263
+ "active": 0
2264
+ }
2265
+ },
2266
+ "babelRetainLines": 0,
2267
+ "bowerAbbreviatedPath": "bower_components",
2268
+ "bowerAutoCreateInfoFile": 1,
2269
+ "bowerInstallDevDependencies": 0,
2270
+ "bowerSaveDependencies": 1,
2271
+ "bowerSaveDevDependencies": 0,
2272
+ "bowerUseExactVersion": 0,
2273
+ "browserRefreshDelay": 0,
2274
+ "browserslistString": ">0.2%, last 2 versions, Firefox ESR, not dead",
2275
+ "buildFolderActive": 0,
2276
+ "buildFolderName": "build",
2277
+ "cleanBuild": 1,
2278
+ "coffeeLintFlags2": {
2279
+ "arrow_spacing": {
2280
+ "active": 0,
2281
+ "flagValue": -1
2282
+ },
2283
+ "camel_case_classes": {
2284
+ "active": 1,
2285
+ "flagValue": -1
2286
+ },
2287
+ "colon_assignment_spacing": {
2288
+ "active": 0,
2289
+ "flagValue": 1
2290
+ },
2291
+ "cyclomatic_complexity": {
2292
+ "active": 0,
2293
+ "flagValue": 10
2294
+ },
2295
+ "duplicate_key": {
2296
+ "active": 1,
2297
+ "flagValue": -1
2298
+ },
2299
+ "empty_constructor_needs_parens": {
2300
+ "active": 0,
2301
+ "flagValue": -1
2302
+ },
2303
+ "ensure_comprehensions": {
2304
+ "active": 1,
2305
+ "flagValue": -1
2306
+ },
2307
+ "indentation": {
2308
+ "active": 1,
2309
+ "flagValue": 2
2310
+ },
2311
+ "line_endings": {
2312
+ "active": 0,
2313
+ "flagValue": 0
2314
+ },
2315
+ "max_line_length": {
2316
+ "active": 0,
2317
+ "flagValue": 150
2318
+ },
2319
+ "missing_fat_arrows": {
2320
+ "active": 0,
2321
+ "flagValue": -1
2322
+ },
2323
+ "newlines_after_classes": {
2324
+ "active": 0,
2325
+ "flagValue": 3
2326
+ },
2327
+ "no_backticks": {
2328
+ "active": 1,
2329
+ "flagValue": -1
2330
+ },
2331
+ "no_debugger": {
2332
+ "active": 1,
2333
+ "flagValue": -1
2334
+ },
2335
+ "no_empty_functions": {
2336
+ "active": 0,
2337
+ "flagValue": -1
2338
+ },
2339
+ "no_empty_param_list": {
2340
+ "active": 0,
2341
+ "flagValue": -1
2342
+ },
2343
+ "no_implicit_braces": {
2344
+ "active": 1,
2345
+ "flagValue": -1
2346
+ },
2347
+ "no_implicit_parens": {
2348
+ "active": 0,
2349
+ "flagValue": -1
2350
+ },
2351
+ "no_interpolation_in_single_quotes": {
2352
+ "active": 0,
2353
+ "flagValue": -1
2354
+ },
2355
+ "no_nested_string_interpolation": {
2356
+ "active": 1,
2357
+ "flagValue": -1
2358
+ },
2359
+ "no_plusplus": {
2360
+ "active": 0,
2361
+ "flagValue": -1
2362
+ },
2363
+ "no_private_function_fat_arrows": {
2364
+ "active": 1,
2365
+ "flagValue": -1
2366
+ },
2367
+ "no_stand_alone_at": {
2368
+ "active": 1,
2369
+ "flagValue": -1
2370
+ },
2371
+ "no_tabs": {
2372
+ "active": 1,
2373
+ "flagValue": -1
2374
+ },
2375
+ "no_this": {
2376
+ "active": 0,
2377
+ "flagValue": -1
2378
+ },
2379
+ "no_throwing_strings": {
2380
+ "active": 1,
2381
+ "flagValue": -1
2382
+ },
2383
+ "no_trailing_semicolons": {
2384
+ "active": 1,
2385
+ "flagValue": -1
2386
+ },
2387
+ "no_trailing_whitespace": {
2388
+ "active": 1,
2389
+ "flagValue": -1
2390
+ },
2391
+ "no_unnecessary_double_quotes": {
2392
+ "active": 0,
2393
+ "flagValue": -1
2394
+ },
2395
+ "no_unnecessary_fat_arrows": {
2396
+ "active": 1,
2397
+ "flagValue": -1
2398
+ },
2399
+ "non_empty_constructor_needs_parens": {
2400
+ "active": 0,
2401
+ "flagValue": -1
2402
+ },
2403
+ "prefer_english_operator": {
2404
+ "active": 0,
2405
+ "flagValue": -1
2406
+ },
2407
+ "space_operators": {
2408
+ "active": 0,
2409
+ "flagValue": -1
2410
+ },
2411
+ "spacing_after_comma": {
2412
+ "active": 1,
2413
+ "flagValue": -1
2414
+ }
2415
+ },
2416
+ "esLintConfigFileHandlingType": 0,
2417
+ "esLintECMAVersion": 7,
2418
+ "esLintEnvironmentsMask": 1,
2419
+ "esLintRules": {
2420
+ "accessor-pairs": {
2421
+ "active": 0,
2422
+ "optionString": "{'setWithoutGet': true, 'getWithoutSet': false}"
2423
+ },
2424
+ "array-bracket-newline": {
2425
+ "active": 0,
2426
+ "optionString": "{'multiline': true, 'minItems': null}"
2427
+ },
2428
+ "array-bracket-spacing": {
2429
+ "active": 0,
2430
+ "optionString": "'never', {'singleValue': false, 'objectsInArrays': false, 'arraysInArrays': false}"
2431
+ },
2432
+ "array-callback-return": {
2433
+ "active": 0,
2434
+ "optionString": "{'allowImplicit': false}"
2435
+ },
2436
+ "array-element-newline": {
2437
+ "active": 0,
2438
+ "optionString": "'always'"
2439
+ },
2440
+ "arrow-body-style": {
2441
+ "active": 0,
2442
+ "optionString": "'as-needed', {'requireReturnForObjectLiteral': false}"
2443
+ },
2444
+ "arrow-parens": {
2445
+ "active": 0,
2446
+ "optionString": "'always'"
2447
+ },
2448
+ "arrow-spacing": {
2449
+ "active": 0,
2450
+ "optionString": "{'before': true, 'after': true}"
2451
+ },
2452
+ "block-scoped-var": {
2453
+ "active": 0,
2454
+ "optionString": ""
2455
+ },
2456
+ "block-spacing": {
2457
+ "active": 0,
2458
+ "optionString": "'always'"
2459
+ },
2460
+ "brace-style": {
2461
+ "active": 0,
2462
+ "optionString": "'1tbs', {'allowSingleLine': true}"
2463
+ },
2464
+ "callback-return": {
2465
+ "active": 0,
2466
+ "optionString": "['callback', 'cb', 'next']"
2467
+ },
2468
+ "camelcase": {
2469
+ "active": 0,
2470
+ "optionString": "{'properties': 'always', 'ignoreDestructuring': false}"
2471
+ },
2472
+ "capitalized-comments": {
2473
+ "active": 0,
2474
+ "optionString": "'always', {'ignoreInlineComments': false, 'ignoreConsecutiveComments': false}"
2475
+ },
2476
+ "class-methods-use-this": {
2477
+ "active": 0,
2478
+ "optionString": "{'exceptMethods': []}"
2479
+ },
2480
+ "comma-dangle": {
2481
+ "active": 1,
2482
+ "optionString": "'never'"
2483
+ },
2484
+ "comma-spacing": {
2485
+ "active": 0,
2486
+ "optionString": "{'before': false, 'after': true}"
2487
+ },
2488
+ "comma-style": {
2489
+ "active": 0,
2490
+ "optionString": "'last'"
2491
+ },
2492
+ "complexity": {
2493
+ "active": 0,
2494
+ "optionString": "20"
2495
+ },
2496
+ "computed-property-spacing": {
2497
+ "active": 0,
2498
+ "optionString": "'never'"
2499
+ },
2500
+ "consistent-return": {
2501
+ "active": 0,
2502
+ "optionString": "{'treatUndefinedAsUnspecified': false}"
2503
+ },
2504
+ "consistent-this": {
2505
+ "active": 0,
2506
+ "optionString": "'that'"
2507
+ },
2508
+ "constructor-super": {
2509
+ "active": 1,
2510
+ "optionString": ""
2511
+ },
2512
+ "curly": {
2513
+ "active": 0,
2514
+ "optionString": "'all'"
2515
+ },
2516
+ "default-case": {
2517
+ "active": 0,
2518
+ "optionString": ""
2519
+ },
2520
+ "dot-location": {
2521
+ "active": 0,
2522
+ "optionString": "'object'"
2523
+ },
2524
+ "dot-notation": {
2525
+ "active": 0,
2526
+ "optionString": "{'allowKeywords': false}"
2527
+ },
2528
+ "eol-last": {
2529
+ "active": 0,
2530
+ "optionString": "'always'"
2531
+ },
2532
+ "eqeqeq": {
2533
+ "active": 0,
2534
+ "optionString": "'always', {'null': 'always'}"
2535
+ },
2536
+ "for-direction": {
2537
+ "active": 0,
2538
+ "optionString": ""
2539
+ },
2540
+ "func-call-spacing": {
2541
+ "active": 0,
2542
+ "optionString": "'never'"
2543
+ },
2544
+ "func-name-matching": {
2545
+ "active": 0,
2546
+ "optionString": "'always', {'considerPropertyDescriptor': false, 'includeCommonJSModuleExports': false}"
2547
+ },
2548
+ "func-names": {
2549
+ "active": 0,
2550
+ "optionString": "'always', {'generators': 'always'}"
2551
+ },
2552
+ "func-style": {
2553
+ "active": 0,
2554
+ "optionString": "'expression'"
2555
+ },
2556
+ "function-paren-newline": {
2557
+ "active": 0,
2558
+ "optionString": "'multiline'"
2559
+ },
2560
+ "generator-star-spacing": {
2561
+ "active": 0,
2562
+ "optionString": "{'before': true, 'after': false}"
2563
+ },
2564
+ "getter-return": {
2565
+ "active": 0,
2566
+ "optionString": "{'allowImplicit': false}"
2567
+ },
2568
+ "global-require": {
2569
+ "active": 0,
2570
+ "optionString": ""
2571
+ },
2572
+ "guard-for-in": {
2573
+ "active": 0,
2574
+ "optionString": ""
2575
+ },
2576
+ "handle-callback-err": {
2577
+ "active": 0,
2578
+ "optionString": "'err'"
2579
+ },
2580
+ "id-blacklist": {
2581
+ "active": 0,
2582
+ "optionString": "'data', 'err', 'e', 'cb', 'callback'"
2583
+ },
2584
+ "id-length": {
2585
+ "active": 0,
2586
+ "optionString": "{'min': 2, 'max': 1000, 'properties': 'always', 'exceptions': ['x', 'i', 'y']}"
2587
+ },
2588
+ "id-match": {
2589
+ "active": 0,
2590
+ "optionString": "'^[a-z]+([A-Z][a-z]+)*$', {'properties': false, 'onlyDeclarations': true, 'ignoreDestructuring': false}"
2591
+ },
2592
+ "implicit-arrow-linebreak": {
2593
+ "active": 0,
2594
+ "optionString": "'beside'"
2595
+ },
2596
+ "indent": {
2597
+ "active": 0,
2598
+ "optionString": "4, {'SwitchCase': 0, 'VariableDeclarator': 1, 'outerIIFEBody': 1 }"
2599
+ },
2600
+ "init-declarations": {
2601
+ "active": 0,
2602
+ "optionString": "'always', {'ignoreForLoopInit': true}"
2603
+ },
2604
+ "jsx-quotes": {
2605
+ "active": 0,
2606
+ "optionString": "'prefer-double'"
2607
+ },
2608
+ "key-spacing": {
2609
+ "active": 0,
2610
+ "optionString": "{'singleLine': {'beforeColon': false, 'afterColon': true, 'mode':'strict'}, 'multiLine': {'beforeColon': false, 'afterColon': true, 'align': 'value', 'mode':'minimum'}}"
2611
+ },
2612
+ "keyword-spacing": {
2613
+ "active": 0,
2614
+ "optionString": "{'before': true, 'after': true, 'overrides': {}}"
2615
+ },
2616
+ "line-comment-position": {
2617
+ "active": 0,
2618
+ "optionString": "{'position': 'above'}"
2619
+ },
2620
+ "linebreak-style": {
2621
+ "active": 0,
2622
+ "optionString": "'unix'"
2623
+ },
2624
+ "lines-around-comment": {
2625
+ "active": 0,
2626
+ "optionString": "{'beforeBlockComment': true}"
2627
+ },
2628
+ "lines-between-class-members": {
2629
+ "active": 0,
2630
+ "optionString": "'always', {exceptAfterSingleLine: false}"
2631
+ },
2632
+ "max-classes-per-file": {
2633
+ "active": 0,
2634
+ "optionString": "1"
2635
+ },
2636
+ "max-depth": {
2637
+ "active": 0,
2638
+ "optionString": "{'max': 4}"
2639
+ },
2640
+ "max-len": {
2641
+ "active": 0,
2642
+ "optionString": "{'code': 80, 'comments': 80, 'tabWidth': 4, 'ignoreUrls': true, 'ignoreStrings': true, 'ignoreTemplateLiterals': true, 'ignoreRegExpLiterals': true}"
2643
+ },
2644
+ "max-lines": {
2645
+ "active": 0,
2646
+ "optionString": "{'max': 300, 'skipBlankLines': true, 'skipComments': true}"
2647
+ },
2648
+ "max-lines-per-function": {
2649
+ "active": 0,
2650
+ "optionString": "{'max': 50, 'skipBlankLines': true, 'skipComments': true, 'IIFEs': false}"
2651
+ },
2652
+ "max-nested-callbacks": {
2653
+ "active": 0,
2654
+ "optionString": "{'max': 10}"
2655
+ },
2656
+ "max-params": {
2657
+ "active": 0,
2658
+ "optionString": "{'max': 4}"
2659
+ },
2660
+ "max-statements": {
2661
+ "active": 0,
2662
+ "optionString": "{'max': 10}, {'ignoreTopLevelFunctions': true}"
2663
+ },
2664
+ "max-statements-per-line": {
2665
+ "active": 0,
2666
+ "optionString": "{'max': 1}"
2667
+ },
2668
+ "multiline-comment-style": {
2669
+ "active": 0,
2670
+ "optionString": "'starred-block'"
2671
+ },
2672
+ "multiline-ternary": {
2673
+ "active": 0,
2674
+ "optionString": "'always'"
2675
+ },
2676
+ "new-cap": {
2677
+ "active": 0,
2678
+ "optionString": "{'newIsCap': true, 'capIsNew': true, 'newIsCapExceptions': [], 'capIsNewExceptions': ['Array', 'Boolean', 'Date', 'Error', 'Function', 'Number', 'Object', 'RegExp', 'String', 'Symbol'], 'properties': true}"
2679
+ },
2680
+ "new-parens": {
2681
+ "active": 0,
2682
+ "optionString": ""
2683
+ },
2684
+ "newline-per-chained-call": {
2685
+ "active": 0,
2686
+ "optionString": "{'ignoreChainWithDepth': 2}"
2687
+ },
2688
+ "no-alert": {
2689
+ "active": 0,
2690
+ "optionString": ""
2691
+ },
2692
+ "no-array-constructor": {
2693
+ "active": 0,
2694
+ "optionString": ""
2695
+ },
2696
+ "no-async-promise-executor": {
2697
+ "active": 0,
2698
+ "optionString": ""
2699
+ },
2700
+ "no-await-in-loop": {
2701
+ "active": 0,
2702
+ "optionString": ""
2703
+ },
2704
+ "no-bitwise": {
2705
+ "active": 0,
2706
+ "optionString": "{'allow': ['~'], 'int32Hint': true}"
2707
+ },
2708
+ "no-buffer-constructor": {
2709
+ "active": 0,
2710
+ "optionString": ""
2711
+ },
2712
+ "no-caller": {
2713
+ "active": 0,
2714
+ "optionString": ""
2715
+ },
2716
+ "no-case-declarations": {
2717
+ "active": 1,
2718
+ "optionString": ""
2719
+ },
2720
+ "no-class-assign": {
2721
+ "active": 1,
2722
+ "optionString": ""
2723
+ },
2724
+ "no-compare-neg-zero": {
2725
+ "active": 0,
2726
+ "optionString": ""
2727
+ },
2728
+ "no-cond-assign": {
2729
+ "active": 1,
2730
+ "optionString": "'except-parens'"
2731
+ },
2732
+ "no-confusing-arrow": {
2733
+ "active": 0,
2734
+ "optionString": "{'allowParens': false}"
2735
+ },
2736
+ "no-console": {
2737
+ "active": 1,
2738
+ "optionString": "{'allow': ['warn', 'error']}"
2739
+ },
2740
+ "no-const-assign": {
2741
+ "active": 1,
2742
+ "optionString": ""
2743
+ },
2744
+ "no-constant-condition": {
2745
+ "active": 1,
2746
+ "optionString": "{'checkLoops': true}"
2747
+ },
2748
+ "no-continue": {
2749
+ "active": 0,
2750
+ "optionString": ""
2751
+ },
2752
+ "no-control-regex": {
2753
+ "active": 1,
2754
+ "optionString": ""
2755
+ },
2756
+ "no-debugger": {
2757
+ "active": 1,
2758
+ "optionString": ""
2759
+ },
2760
+ "no-delete-var": {
2761
+ "active": 1,
2762
+ "optionString": ""
2763
+ },
2764
+ "no-div-regex": {
2765
+ "active": 0,
2766
+ "optionString": ""
2767
+ },
2768
+ "no-dupe-args": {
2769
+ "active": 1,
2770
+ "optionString": ""
2771
+ },
2772
+ "no-dupe-class-members": {
2773
+ "active": 1,
2774
+ "optionString": ""
2775
+ },
2776
+ "no-dupe-keys": {
2777
+ "active": 1,
2778
+ "optionString": ""
2779
+ },
2780
+ "no-duplicate-imports": {
2781
+ "active": 0,
2782
+ "optionString": "{'includeExports': false}"
2783
+ },
2784
+ "no-else-return": {
2785
+ "active": 0,
2786
+ "optionString": ""
2787
+ },
2788
+ "no-empty": {
2789
+ "active": 1,
2790
+ "optionString": "{'allowEmptyCatch': false}"
2791
+ },
2792
+ "no-empty-character-class": {
2793
+ "active": 1,
2794
+ "optionString": ""
2795
+ },
2796
+ "no-empty-function": {
2797
+ "active": 0,
2798
+ "optionString": "{'allow': []}"
2799
+ },
2800
+ "no-empty-pattern": {
2801
+ "active": 1,
2802
+ "optionString": ""
2803
+ },
2804
+ "no-eq-null": {
2805
+ "active": 0,
2806
+ "optionString": ""
2807
+ },
2808
+ "no-eval": {
2809
+ "active": 0,
2810
+ "optionString": "{'allowIndirect': false}"
2811
+ },
2812
+ "no-ex-assign": {
2813
+ "active": 1,
2814
+ "optionString": ""
2815
+ },
2816
+ "no-extend-native": {
2817
+ "active": 0,
2818
+ "optionString": "{'exceptions': []}"
2819
+ },
2820
+ "no-extra-bind": {
2821
+ "active": 0,
2822
+ "optionString": ""
2823
+ },
2824
+ "no-extra-boolean-cast": {
2825
+ "active": 1,
2826
+ "optionString": ""
2827
+ },
2828
+ "no-extra-labels": {
2829
+ "active": 0,
2830
+ "optionString": ""
2831
+ },
2832
+ "no-extra-parens": {
2833
+ "active": 0,
2834
+ "optionString": "'all', {'conditionalAssign': false, 'returnAssign': false, 'nestedBinaryExpressions': false, 'ignoreJSX': 'none', 'enforceForArrowConditionals': false}"
2835
+ },
2836
+ "no-extra-semi": {
2837
+ "active": 1,
2838
+ "optionString": ""
2839
+ },
2840
+ "no-fallthrough": {
2841
+ "active": 1,
2842
+ "optionString": ""
2843
+ },
2844
+ "no-floating-decimal": {
2845
+ "active": 0,
2846
+ "optionString": ""
2847
+ },
2848
+ "no-func-assign": {
2849
+ "active": 1,
2850
+ "optionString": ""
2851
+ },
2852
+ "no-global-assign": {
2853
+ "active": 1,
2854
+ "optionString": "{'exceptions': []}"
2855
+ },
2856
+ "no-implicit-coercion": {
2857
+ "active": 0,
2858
+ "optionString": "{'boolean': true, 'number': true, 'string': true, 'allow': []}"
2859
+ },
2860
+ "no-implicit-globals": {
2861
+ "active": 0,
2862
+ "optionString": ""
2863
+ },
2864
+ "no-implied-eval": {
2865
+ "active": 0,
2866
+ "optionString": ""
2867
+ },
2868
+ "no-inline-comments": {
2869
+ "active": 0,
2870
+ "optionString": ""
2871
+ },
2872
+ "no-inner-declarations": {
2873
+ "active": 1,
2874
+ "optionString": "'functions'"
2875
+ },
2876
+ "no-invalid-regexp": {
2877
+ "active": 1,
2878
+ "optionString": "{'allowConstructorFlags': ['u', 'y']}"
2879
+ },
2880
+ "no-invalid-this": {
2881
+ "active": 0,
2882
+ "optionString": ""
2883
+ },
2884
+ "no-irregular-whitespace": {
2885
+ "active": 1,
2886
+ "optionString": "{'skipStrings': true, 'skipComments': false, 'skipRegExps': true, 'skipTemplates': true}"
2887
+ },
2888
+ "no-iterator": {
2889
+ "active": 0,
2890
+ "optionString": ""
2891
+ },
2892
+ "no-label-var": {
2893
+ "active": 0,
2894
+ "optionString": ""
2895
+ },
2896
+ "no-labels": {
2897
+ "active": 0,
2898
+ "optionString": "{'allowLoop': false, 'allowSwitch': false}"
2899
+ },
2900
+ "no-lone-blocks": {
2901
+ "active": 0,
2902
+ "optionString": ""
2903
+ },
2904
+ "no-lonely-if": {
2905
+ "active": 0,
2906
+ "optionString": ""
2907
+ },
2908
+ "no-loop-func": {
2909
+ "active": 0,
2910
+ "optionString": ""
2911
+ },
2912
+ "no-magic-numbers": {
2913
+ "active": 0,
2914
+ "optionString": "{'ignore': [], 'ignoreArrayIndexes': true, 'enforceConst': false, 'detectObjects': false}"
2915
+ },
2916
+ "no-misleading-character-class": {
2917
+ "active": 0,
2918
+ "optionString": ""
2919
+ },
2920
+ "no-mixed-operators": {
2921
+ "active": 0,
2922
+ "optionString": "{'groups': [['+', '-', '*', '/', '%', '**'], ['&', '|', '^', '~', '<<', '>>', '>>>'], ['==', '!=', '===', '!==', '>', '>=', '<', '<='], ['&&', '||'], ['in', 'instanceof']], 'allowSamePrecedence': true}"
2923
+ },
2924
+ "no-mixed-requires": {
2925
+ "active": 0,
2926
+ "optionString": "{'grouping': false, 'allowCall': false }"
2927
+ },
2928
+ "no-mixed-spaces-and-tabs": {
2929
+ "active": 0,
2930
+ "optionString": ""
2931
+ },
2932
+ "no-multi-assign": {
2933
+ "active": 0,
2934
+ "optionString": ""
2935
+ },
2936
+ "no-multi-spaces": {
2937
+ "active": 0,
2938
+ "optionString": "{'exceptions': {'Property': true, 'BinaryExpression': false, 'VariableDeclarator': false, 'ImportDeclaration': false}}"
2939
+ },
2940
+ "no-multi-str": {
2941
+ "active": 0,
2942
+ "optionString": ""
2943
+ },
2944
+ "no-multiple-empty-lines": {
2945
+ "active": 0,
2946
+ "optionString": "{'max': 2, 'maxBOF': 2, 'maxEOF': 2}"
2947
+ },
2948
+ "no-negated-condition": {
2949
+ "active": 0,
2950
+ "optionString": ""
2951
+ },
2952
+ "no-nested-ternary": {
2953
+ "active": 0,
2954
+ "optionString": ""
2955
+ },
2956
+ "no-new": {
2957
+ "active": 0,
2958
+ "optionString": ""
2959
+ },
2960
+ "no-new-func": {
2961
+ "active": 0,
2962
+ "optionString": ""
2963
+ },
2964
+ "no-new-object": {
2965
+ "active": 0,
2966
+ "optionString": ""
2967
+ },
2968
+ "no-new-require": {
2969
+ "active": 0,
2970
+ "optionString": ""
2971
+ },
2972
+ "no-new-symbol": {
2973
+ "active": 1,
2974
+ "optionString": ""
2975
+ },
2976
+ "no-new-wrappers": {
2977
+ "active": 0,
2978
+ "optionString": ""
2979
+ },
2980
+ "no-obj-calls": {
2981
+ "active": 1,
2982
+ "optionString": ""
2983
+ },
2984
+ "no-octal": {
2985
+ "active": 1,
2986
+ "optionString": ""
2987
+ },
2988
+ "no-octal-escape": {
2989
+ "active": 0,
2990
+ "optionString": ""
2991
+ },
2992
+ "no-param-reassign": {
2993
+ "active": 0,
2994
+ "optionString": "{'props': false}"
2995
+ },
2996
+ "no-path-concat": {
2997
+ "active": 0,
2998
+ "optionString": ""
2999
+ },
3000
+ "no-plusplus": {
3001
+ "active": 0,
3002
+ "optionString": "{'allowForLoopAfterthoughts': false}"
3003
+ },
3004
+ "no-process-env": {
3005
+ "active": 0,
3006
+ "optionString": ""
3007
+ },
3008
+ "no-process-exit": {
3009
+ "active": 0,
3010
+ "optionString": ""
3011
+ },
3012
+ "no-proto": {
3013
+ "active": 0,
3014
+ "optionString": ""
3015
+ },
3016
+ "no-prototype-builtins": {
3017
+ "active": 0,
3018
+ "optionString": ""
3019
+ },
3020
+ "no-redeclare": {
3021
+ "active": 1,
3022
+ "optionString": "{'builtinGlobals': false}"
3023
+ },
3024
+ "no-regex-spaces": {
3025
+ "active": 1,
3026
+ "optionString": ""
3027
+ },
3028
+ "no-restricted-globals": {
3029
+ "active": 0,
3030
+ "optionString": "'event', 'fdescribe'"
3031
+ },
3032
+ "no-restricted-imports": {
3033
+ "active": 0,
3034
+ "optionString": ""
3035
+ },
3036
+ "no-restricted-modules": {
3037
+ "active": 0,
3038
+ "optionString": ""
3039
+ },
3040
+ "no-restricted-properties": {
3041
+ "active": 0,
3042
+ "optionString": "[{'object': 'disallowedObjectName', 'property': 'disallowedPropertyName'}, {'object': 'disallowedObjectName', 'property': 'anotherDisallowedPropertyName', 'message': 'Please use allowedObjectName.allowedPropertyName.'}]"
3043
+ },
3044
+ "no-restricted-syntax": {
3045
+ "active": 0,
3046
+ "optionString": "'FunctionExpression', 'WithStatement'"
3047
+ },
3048
+ "no-return-assign": {
3049
+ "active": 0,
3050
+ "optionString": "'except-parens'"
3051
+ },
3052
+ "no-return-await": {
3053
+ "active": 0,
3054
+ "optionString": ""
3055
+ },
3056
+ "no-script-url": {
3057
+ "active": 0,
3058
+ "optionString": ""
3059
+ },
3060
+ "no-self-assign": {
3061
+ "active": 1,
3062
+ "optionString": "{'props': true}"
3063
+ },
3064
+ "no-self-compare": {
3065
+ "active": 0,
3066
+ "optionString": ""
3067
+ },
3068
+ "no-sequences": {
3069
+ "active": 0,
3070
+ "optionString": ""
3071
+ },
3072
+ "no-shadow": {
3073
+ "active": 0,
3074
+ "optionString": "{'builtinGlobals': false, 'hoist': 'functions', 'allow': []}"
3075
+ },
3076
+ "no-shadow-restricted-names": {
3077
+ "active": 0,
3078
+ "optionString": ""
3079
+ },
3080
+ "no-sparse-arrays": {
3081
+ "active": 1,
3082
+ "optionString": ""
3083
+ },
3084
+ "no-sync": {
3085
+ "active": 0,
3086
+ "optionString": "{'allowAtRootLevel': false}"
3087
+ },
3088
+ "no-tabs": {
3089
+ "active": 0,
3090
+ "optionString": "{allowIndentationTabs: false}"
3091
+ },
3092
+ "no-template-curly-in-string": {
3093
+ "active": 0,
3094
+ "optionString": ""
3095
+ },
3096
+ "no-ternary": {
3097
+ "active": 0,
3098
+ "optionString": ""
3099
+ },
3100
+ "no-this-before-super": {
3101
+ "active": 1,
3102
+ "optionString": ""
3103
+ },
3104
+ "no-throw-literal": {
3105
+ "active": 0,
3106
+ "optionString": ""
3107
+ },
3108
+ "no-trailing-spaces": {
3109
+ "active": 0,
3110
+ "optionString": "{'skipBlankLines': false, 'ignoreComments': false}"
3111
+ },
3112
+ "no-undef": {
3113
+ "active": 1,
3114
+ "optionString": "{'typeof': false}"
3115
+ },
3116
+ "no-undef-init": {
3117
+ "active": 0,
3118
+ "optionString": ""
3119
+ },
3120
+ "no-undefined": {
3121
+ "active": 0,
3122
+ "optionString": ""
3123
+ },
3124
+ "no-underscore-dangle": {
3125
+ "active": 0,
3126
+ "optionString": "{'allow': [], 'allowAfterThis': false, 'allowAfterSuper': false, 'enforceInMethodNames': false}"
3127
+ },
3128
+ "no-unexpected-multiline": {
3129
+ "active": 1,
3130
+ "optionString": ""
3131
+ },
3132
+ "no-unmodified-loop-condition": {
3133
+ "active": 0,
3134
+ "optionString": ""
3135
+ },
3136
+ "no-unneeded-ternary": {
3137
+ "active": 0,
3138
+ "optionString": "{'defaultAssignment': true}"
3139
+ },
3140
+ "no-unreachable": {
3141
+ "active": 1,
3142
+ "optionString": ""
3143
+ },
3144
+ "no-unsafe-finally": {
3145
+ "active": 1,
3146
+ "optionString": ""
3147
+ },
3148
+ "no-unsafe-negation": {
3149
+ "active": 1,
3150
+ "optionString": ""
3151
+ },
3152
+ "no-unused-expressions": {
3153
+ "active": 0,
3154
+ "optionString": "{'allowShortCircuit': false, 'allowTernary': false, 'allowTaggedTemplates': false}"
3155
+ },
3156
+ "no-unused-labels": {
3157
+ "active": 1,
3158
+ "optionString": ""
3159
+ },
3160
+ "no-unused-vars": {
3161
+ "active": 1,
3162
+ "optionString": "{'vars': 'all', 'args': 'after-used', 'caughtErrors': 'none', 'ignoreRestSiblings': false}"
3163
+ },
3164
+ "no-use-before-define": {
3165
+ "active": 0,
3166
+ "optionString": "{'functions': true, 'classes': true, 'variables': true}"
3167
+ },
3168
+ "no-useless-call": {
3169
+ "active": 0,
3170
+ "optionString": ""
3171
+ },
3172
+ "no-useless-catch": {
3173
+ "active": 0,
3174
+ "optionString": ""
3175
+ },
3176
+ "no-useless-computed-key": {
3177
+ "active": 0,
3178
+ "optionString": ""
3179
+ },
3180
+ "no-useless-concat": {
3181
+ "active": 0,
3182
+ "optionString": ""
3183
+ },
3184
+ "no-useless-constructor": {
3185
+ "active": 0,
3186
+ "optionString": ""
3187
+ },
3188
+ "no-useless-escape": {
3189
+ "active": 0,
3190
+ "optionString": ""
3191
+ },
3192
+ "no-useless-rename": {
3193
+ "active": 0,
3194
+ "optionString": "{'ignoreDestructuring': false, 'ignoreImport': false, 'ignoreExport': false}"
3195
+ },
3196
+ "no-useless-return": {
3197
+ "active": 0,
3198
+ "optionString": ""
3199
+ },
3200
+ "no-var": {
3201
+ "active": 0,
3202
+ "optionString": ""
3203
+ },
3204
+ "no-void": {
3205
+ "active": 0,
3206
+ "optionString": ""
3207
+ },
3208
+ "no-warning-comments": {
3209
+ "active": 0,
3210
+ "optionString": "{'terms': ['todo', 'fixme', 'xxx'], 'location': 'start'}"
3211
+ },
3212
+ "no-whitespace-before-property": {
3213
+ "active": 0,
3214
+ "optionString": ""
3215
+ },
3216
+ "no-with": {
3217
+ "active": 0,
3218
+ "optionString": ""
3219
+ },
3220
+ "nonblock-statement-body-position": {
3221
+ "active": 0,
3222
+ "optionString": "'beside'"
3223
+ },
3224
+ "object-curly-newline": {
3225
+ "active": 0,
3226
+ "optionString": "{'ObjectExpression': {'multiline': true, 'consistent': true}, 'ObjectPattern': {'multiline': true, 'consistent': true}}"
3227
+ },
3228
+ "object-curly-spacing": {
3229
+ "active": 0,
3230
+ "optionString": "'never'"
3231
+ },
3232
+ "object-property-newline": {
3233
+ "active": 0,
3234
+ "optionString": "{'allowAllPropertiesOnSameLine': true}"
3235
+ },
3236
+ "object-shorthand": {
3237
+ "active": 0,
3238
+ "optionString": "'always', {'avoidQuotes': false, 'ignoreConstructors': false}"
3239
+ },
3240
+ "one-var": {
3241
+ "active": 0,
3242
+ "optionString": "'always'"
3243
+ },
3244
+ "one-var-declaration-per-line": {
3245
+ "active": 0,
3246
+ "optionString": "'always'"
3247
+ },
3248
+ "operator-assignment": {
3249
+ "active": 0,
3250
+ "optionString": "'always'"
3251
+ },
3252
+ "operator-linebreak": {
3253
+ "active": 0,
3254
+ "optionString": "'after', {'overrides': {'?': 'after', '+=': 'none'}}"
3255
+ },
3256
+ "padded-blocks": {
3257
+ "active": 0,
3258
+ "optionString": "{'blocks': 'always', 'switches': 'always', 'classes': 'always'}"
3259
+ },
3260
+ "padding-line-between-statements": {
3261
+ "active": 0,
3262
+ "optionString": "{blankLine: 'always', prev:'*', next:'return'}"
3263
+ },
3264
+ "prefer-arrow-callback": {
3265
+ "active": 0,
3266
+ "optionString": ""
3267
+ },
3268
+ "prefer-const": {
3269
+ "active": 0,
3270
+ "optionString": "{'destructuring': 'any', 'ignoreReadBeforeAssign': false}"
3271
+ },
3272
+ "prefer-destructuring": {
3273
+ "active": 0,
3274
+ "optionString": "{'array': true, 'object': true}, {'enforceForRenamedProperties': false}"
3275
+ },
3276
+ "prefer-numeric-literals": {
3277
+ "active": 0,
3278
+ "optionString": ""
3279
+ },
3280
+ "prefer-object-spread": {
3281
+ "active": 0,
3282
+ "optionString": ""
3283
+ },
3284
+ "prefer-promise-reject-errors": {
3285
+ "active": 0,
3286
+ "optionString": "{'allowEmptyReject': false}"
3287
+ },
3288
+ "prefer-rest-params": {
3289
+ "active": 0,
3290
+ "optionString": ""
3291
+ },
3292
+ "prefer-spread": {
3293
+ "active": 0,
3294
+ "optionString": ""
3295
+ },
3296
+ "prefer-template": {
3297
+ "active": 0,
3298
+ "optionString": ""
3299
+ },
3300
+ "quote-props": {
3301
+ "active": 0,
3302
+ "optionString": "'always'"
3303
+ },
3304
+ "quotes": {
3305
+ "active": 0,
3306
+ "optionString": "'double', {'avoidEscape': true, 'allowTemplateLiterals': true}"
3307
+ },
3308
+ "radix": {
3309
+ "active": 0,
3310
+ "optionString": "'always'"
3311
+ },
3312
+ "require-atomic-updates": {
3313
+ "active": 0,
3314
+ "optionString": ""
3315
+ },
3316
+ "require-await": {
3317
+ "active": 0,
3318
+ "optionString": ""
3319
+ },
3320
+ "require-jsdoc": {
3321
+ "active": 0,
3322
+ "optionString": "{'require': {'FunctionDeclaration': true, 'MethodDefinition': false, 'ClassDeclaration': false, 'ArrowFunctionExpression': false}}"
3323
+ },
3324
+ "require-unicode-regexp": {
3325
+ "active": 0,
3326
+ "optionString": ""
3327
+ },
3328
+ "require-yield": {
3329
+ "active": 1,
3330
+ "optionString": ""
3331
+ },
3332
+ "rest-spread-spacing": {
3333
+ "active": 0,
3334
+ "optionString": "'never'"
3335
+ },
3336
+ "semi": {
3337
+ "active": 0,
3338
+ "optionString": "'always', {'omitLastInOneLineBlock': false}"
3339
+ },
3340
+ "semi-spacing": {
3341
+ "active": 0,
3342
+ "optionString": "{'before': false, 'after': true}"
3343
+ },
3344
+ "semi-style": {
3345
+ "active": 0,
3346
+ "optionString": "'last'"
3347
+ },
3348
+ "sort-imports": {
3349
+ "active": 0,
3350
+ "optionString": "{'ignoreCase': false, 'ignoreMemberSort': true, 'memberSyntaxSortOrder': ['none', 'all', 'multiple', 'single']}"
3351
+ },
3352
+ "sort-keys": {
3353
+ "active": 0,
3354
+ "optionString": "'asc', {'caseSensitive': true, 'natural': false}"
3355
+ },
3356
+ "sort-vars": {
3357
+ "active": 0,
3358
+ "optionString": "{'ignoreCase': false}"
3359
+ },
3360
+ "space-before-blocks": {
3361
+ "active": 0,
3362
+ "optionString": "{'functions': 'always', 'keywords': 'always', 'classes': 'always'}"
3363
+ },
3364
+ "space-before-function-paren": {
3365
+ "active": 0,
3366
+ "optionString": "{'anonymous': 'always', 'named': 'never'}"
3367
+ },
3368
+ "space-in-parens": {
3369
+ "active": 0,
3370
+ "optionString": "'never', {'exceptions': []}"
3371
+ },
3372
+ "space-infix-ops": {
3373
+ "active": 0,
3374
+ "optionString": "{'int32Hint': false}"
3375
+ },
3376
+ "space-unary-ops": {
3377
+ "active": 0,
3378
+ "optionString": "{'words': true, 'nonwords': false, 'overrides': {}}"
3379
+ },
3380
+ "spaced-comment": {
3381
+ "active": 0,
3382
+ "optionString": "'always', {'line': {'markers': ['/'], 'exceptions': ['-', '+']}, 'block': {'markers': ['!'], 'exceptions': ['*'], 'balanced': false}}"
3383
+ },
3384
+ "strict": {
3385
+ "active": 0,
3386
+ "optionString": "'safe'"
3387
+ },
3388
+ "switch-colon-spacing": {
3389
+ "active": 0,
3390
+ "optionString": "{'after': true, 'before': false}"
3391
+ },
3392
+ "symbol-description": {
3393
+ "active": 0,
3394
+ "optionString": ""
3395
+ },
3396
+ "template-curly-spacing": {
3397
+ "active": 0,
3398
+ "optionString": "'never'"
3399
+ },
3400
+ "template-tag-spacing": {
3401
+ "active": 0,
3402
+ "optionString": "'never'"
3403
+ },
3404
+ "unicode-bom": {
3405
+ "active": 0,
3406
+ "optionString": "'never'"
3407
+ },
3408
+ "use-isnan": {
3409
+ "active": 1,
3410
+ "optionString": ""
3411
+ },
3412
+ "valid-jsdoc": {
3413
+ "active": 0,
3414
+ "optionString": "{'prefer': {'return': 'returns'}, 'requireReturn': true, 'requireReturnDescription': true, 'requireReturnType': true, 'requireParamDescription': true}"
3415
+ },
3416
+ "valid-typeof": {
3417
+ "active": 1,
3418
+ "optionString": "{'requireStringLiterals': true}"
3419
+ },
3420
+ "vars-on-top": {
3421
+ "active": 0,
3422
+ "optionString": ""
3423
+ },
3424
+ "wrap-iife": {
3425
+ "active": 0,
3426
+ "optionString": "'outside'"
3427
+ },
3428
+ "wrap-regex": {
3429
+ "active": 0,
3430
+ "optionString": ""
3431
+ },
3432
+ "yield-star-spacing": {
3433
+ "active": 0,
3434
+ "optionString": "{'before': false, 'after': true}"
3435
+ },
3436
+ "yoda": {
3437
+ "active": 0,
3438
+ "optionString": "'never', {'exceptRange': false, 'onlyEquality': false}"
3439
+ }
3440
+ },
3441
+ "esLintSourceType": 0,
3442
+ "externalServerAddress": "http://localhost:8888",
3443
+ "gitIgnoreBuildFolder": 1,
3444
+ "hideConfigFile": 0,
3445
+ "jsCheckerReservedNamesString": "",
3446
+ "jsHintFlags2": {
3447
+ "asi": {
3448
+ "active": 0,
3449
+ "flagValue": -1
3450
+ },
3451
+ "bitwise": {
3452
+ "active": 1,
3453
+ "flagValue": -1
3454
+ },
3455
+ "boss": {
3456
+ "active": 0,
3457
+ "flagValue": -1
3458
+ },
3459
+ "browser": {
3460
+ "active": 1,
3461
+ "flagValue": -1
3462
+ },
3463
+ "browserify": {
3464
+ "active": 0,
3465
+ "flagValue": -1
3466
+ },
3467
+ "camelcase": {
3468
+ "active": 0,
3469
+ "flagValue": -1
3470
+ },
3471
+ "couch": {
3472
+ "active": 0,
3473
+ "flagValue": -1
3474
+ },
3475
+ "curly": {
3476
+ "active": 1,
3477
+ "flagValue": -1
3478
+ },
3479
+ "debug": {
3480
+ "active": 0,
3481
+ "flagValue": -1
3482
+ },
3483
+ "devel": {
3484
+ "active": 0,
3485
+ "flagValue": -1
3486
+ },
3487
+ "dojo": {
3488
+ "active": 0,
3489
+ "flagValue": -1
3490
+ },
3491
+ "elision": {
3492
+ "active": 1,
3493
+ "flagValue": -1
3494
+ },
3495
+ "eqeqeq": {
3496
+ "active": 1,
3497
+ "flagValue": -1
3498
+ },
3499
+ "eqnull": {
3500
+ "active": 0,
3501
+ "flagValue": -1
3502
+ },
3503
+ "es3": {
3504
+ "active": 0,
3505
+ "flagValue": -1
3506
+ },
3507
+ "esnext": {
3508
+ "active": 0,
3509
+ "flagValue": -1
3510
+ },
3511
+ "evil": {
3512
+ "active": 0,
3513
+ "flagValue": -1
3514
+ },
3515
+ "expr": {
3516
+ "active": 0,
3517
+ "flagValue": -1
3518
+ },
3519
+ "forin": {
3520
+ "active": 0,
3521
+ "flagValue": -1
3522
+ },
3523
+ "freeze": {
3524
+ "active": 1,
3525
+ "flagValue": -1
3526
+ },
3527
+ "funcscope": {
3528
+ "active": 0,
3529
+ "flagValue": -1
3530
+ },
3531
+ "futurehostile": {
3532
+ "active": 0,
3533
+ "flagValue": -1
3534
+ },
3535
+ "globalstrict": {
3536
+ "active": 0,
3537
+ "flagValue": -1
3538
+ },
3539
+ "immed": {
3540
+ "active": 0,
3541
+ "flagValue": -1
3542
+ },
3543
+ "indent": {
3544
+ "active": 0,
3545
+ "flagValue": 4
3546
+ },
3547
+ "iterator": {
3548
+ "active": 0,
3549
+ "flagValue": -1
3550
+ },
3551
+ "jasmine": {
3552
+ "active": 0,
3553
+ "flagValue": -1
3554
+ },
3555
+ "jquery": {
3556
+ "active": 1,
3557
+ "flagValue": -1
3558
+ },
3559
+ "lastsemic": {
3560
+ "active": 0,
3561
+ "flagValue": -1
3562
+ },
3563
+ "latedef": {
3564
+ "active": 1,
3565
+ "flagValue": -1
3566
+ },
3567
+ "laxbreak": {
3568
+ "active": 0,
3569
+ "flagValue": -1
3570
+ },
3571
+ "laxcomma": {
3572
+ "active": 0,
3573
+ "flagValue": -1
3574
+ },
3575
+ "loopfunc": {
3576
+ "active": 0,
3577
+ "flagValue": -1
3578
+ },
3579
+ "maxcomplexity": {
3580
+ "active": 0,
3581
+ "flagValue": 10
3582
+ },
3583
+ "maxdepth": {
3584
+ "active": 0,
3585
+ "flagValue": 3
3586
+ },
3587
+ "maxlen": {
3588
+ "active": 0,
3589
+ "flagValue": 150
3590
+ },
3591
+ "maxparams": {
3592
+ "active": 0,
3593
+ "flagValue": 3
3594
+ },
3595
+ "maxstatements": {
3596
+ "active": 0,
3597
+ "flagValue": 4
3598
+ },
3599
+ "mocha": {
3600
+ "active": 0,
3601
+ "flagValue": -1
3602
+ },
3603
+ "mootools": {
3604
+ "active": 0,
3605
+ "flagValue": -1
3606
+ },
3607
+ "moz": {
3608
+ "active": 0,
3609
+ "flagValue": -1
3610
+ },
3611
+ "multistr": {
3612
+ "active": 0,
3613
+ "flagValue": -1
3614
+ },
3615
+ "newcap": {
3616
+ "active": 1,
3617
+ "flagValue": -1
3618
+ },
3619
+ "noarg": {
3620
+ "active": 1,
3621
+ "flagValue": -1
3622
+ },
3623
+ "nocomma": {
3624
+ "active": 0,
3625
+ "flagValue": -1
3626
+ },
3627
+ "node": {
3628
+ "active": 0,
3629
+ "flagValue": -1
3630
+ },
3631
+ "noempty": {
3632
+ "active": 0,
3633
+ "flagValue": -1
3634
+ },
3635
+ "nonbsp": {
3636
+ "active": 0,
3637
+ "flagValue": -1
3638
+ },
3639
+ "nonew": {
3640
+ "active": 1,
3641
+ "flagValue": -1
3642
+ },
3643
+ "nonstandard": {
3644
+ "active": 0,
3645
+ "flagValue": -1
3646
+ },
3647
+ "notypeof": {
3648
+ "active": 1,
3649
+ "flagValue": -1
3650
+ },
3651
+ "noyield": {
3652
+ "active": 0,
3653
+ "flagValue": -1
3654
+ },
3655
+ "onecase": {
3656
+ "active": 0,
3657
+ "flagValue": -1
3658
+ },
3659
+ "phantom": {
3660
+ "active": 0,
3661
+ "flagValue": -1
3662
+ },
3663
+ "plusplus": {
3664
+ "active": 0,
3665
+ "flagValue": -1
3666
+ },
3667
+ "proto": {
3668
+ "active": 0,
3669
+ "flagValue": -1
3670
+ },
3671
+ "prototypejs": {
3672
+ "active": 0,
3673
+ "flagValue": -1
3674
+ },
3675
+ "qunit": {
3676
+ "active": 0,
3677
+ "flagValue": -1
3678
+ },
3679
+ "regexp": {
3680
+ "active": 1,
3681
+ "flagValue": -1
3682
+ },
3683
+ "rhino": {
3684
+ "active": 0,
3685
+ "flagValue": -1
3686
+ },
3687
+ "scripturl": {
3688
+ "active": 0,
3689
+ "flagValue": -1
3690
+ },
3691
+ "shadow": {
3692
+ "active": 0,
3693
+ "flagValue": -1
3694
+ },
3695
+ "shelljs": {
3696
+ "active": 0,
3697
+ "flagValue": -1
3698
+ },
3699
+ "singleGroups": {
3700
+ "active": 0,
3701
+ "flagValue": -1
3702
+ },
3703
+ "strict": {
3704
+ "active": 0,
3705
+ "flagValue": -1
3706
+ },
3707
+ "sub": {
3708
+ "active": 0,
3709
+ "flagValue": -1
3710
+ },
3711
+ "supernew": {
3712
+ "active": 0,
3713
+ "flagValue": -1
3714
+ },
3715
+ "typed": {
3716
+ "active": 0,
3717
+ "flagValue": -1
3718
+ },
3719
+ "undef": {
3720
+ "active": 1,
3721
+ "flagValue": -1
3722
+ },
3723
+ "unused": {
3724
+ "active": 1,
3725
+ "flagValue": -1
3726
+ },
3727
+ "varstmt": {
3728
+ "active": 0,
3729
+ "flagValue": -1
3730
+ },
3731
+ "withstmt": {
3732
+ "active": 0,
3733
+ "flagValue": -1
3734
+ },
3735
+ "worker": {
3736
+ "active": 0,
3737
+ "flagValue": -1
3738
+ },
3739
+ "wsh": {
3740
+ "active": 0,
3741
+ "flagValue": -1
3742
+ },
3743
+ "yui": {
3744
+ "active": 0,
3745
+ "flagValue": -1
3746
+ }
3747
+ },
3748
+ "jsLintFlags2": {
3749
+ "bitwise": {
3750
+ "active": 0,
3751
+ "flagValue": -1
3752
+ },
3753
+ "browser": {
3754
+ "active": 1,
3755
+ "flagValue": -1
3756
+ },
3757
+ "couch": {
3758
+ "active": 0,
3759
+ "flagValue": -1
3760
+ },
3761
+ "devel": {
3762
+ "active": 0,
3763
+ "flagValue": -1
3764
+ },
3765
+ "es6": {
3766
+ "active": 0,
3767
+ "flagValue": -1
3768
+ },
3769
+ "eval": {
3770
+ "active": 0,
3771
+ "flagValue": -1
3772
+ },
3773
+ "for": {
3774
+ "active": 0,
3775
+ "flagValue": -1
3776
+ },
3777
+ "maxlen": {
3778
+ "active": 0,
3779
+ "flagValue": 150
3780
+ },
3781
+ "node": {
3782
+ "active": 0,
3783
+ "flagValue": -1
3784
+ },
3785
+ "this": {
3786
+ "active": 0,
3787
+ "flagValue": -1
3788
+ },
3789
+ "white": {
3790
+ "active": 0,
3791
+ "flagValue": -1
3792
+ }
3793
+ },
3794
+ "languageDefaultsCOFFEE": {
3795
+ "autoOutputAction": 0,
3796
+ "autoOutputPathFilenamePattern": "*.js",
3797
+ "autoOutputPathRelativePath": "",
3798
+ "autoOutputPathReplace1": "",
3799
+ "autoOutputPathReplace2": "",
3800
+ "autoOutputPathStyle": 0,
3801
+ "createSourceMap": 0,
3802
+ "minifyOutput": 1,
3803
+ "outputStyle": 0,
3804
+ "syntaxCheckerStyle": 1,
3805
+ "transpilerStyle": 1
3806
+ },
3807
+ "languageDefaultsCSS": {
3808
+ "autoOutputAction": 0,
3809
+ "autoOutputPathFilenamePattern": "*-min.css",
3810
+ "autoOutputPathRelativePath": "",
3811
+ "autoOutputPathReplace1": "",
3812
+ "autoOutputPathReplace2": "",
3813
+ "autoOutputPathStyle": 0,
3814
+ "createSourceMap": 0,
3815
+ "outputStyle": 3,
3816
+ "shouldRunAutoprefixer": 1,
3817
+ "shouldRunBless": 0
3818
+ },
3819
+ "languageDefaultsGIF": {
3820
+ "autoOutputAction": 0,
3821
+ "autoOutputPathFilenamePattern": "*.gif",
3822
+ "autoOutputPathRelativePath": "",
3823
+ "autoOutputPathReplace1": "",
3824
+ "autoOutputPathReplace2": "",
3825
+ "autoOutputPathStyle": 0
3826
+ },
3827
+ "languageDefaultsHAML": {
3828
+ "autoOutputAction": 0,
3829
+ "autoOutputPathFilenamePattern": "*.html",
3830
+ "autoOutputPathRelativePath": "",
3831
+ "autoOutputPathReplace1": "",
3832
+ "autoOutputPathReplace2": "",
3833
+ "autoOutputPathStyle": 0,
3834
+ "escapeHTMLCharacters": 0,
3835
+ "noEscapeInAttributes": 0,
3836
+ "outputFormat": 2,
3837
+ "shouldRunCacheBuster": 0,
3838
+ "shouldRunHTMLMinifier": 0,
3839
+ "useCDATA": 0,
3840
+ "useDoubleQuotes": 0,
3841
+ "useUnixNewlines": 0
3842
+ },
3843
+ "languageDefaultsJPG": {
3844
+ "autoOutputAction": 0,
3845
+ "autoOutputPathFilenamePattern": "*.jpg",
3846
+ "autoOutputPathRelativePath": "",
3847
+ "autoOutputPathReplace1": "",
3848
+ "autoOutputPathReplace2": "",
3849
+ "autoOutputPathStyle": 0,
3850
+ "outputFormat": 0,
3851
+ "quality": 100
3852
+ },
3853
+ "languageDefaultsJS": {
3854
+ "autoOutputAction": 0,
3855
+ "autoOutputPathFilenamePattern": "*-min.js",
3856
+ "autoOutputPathRelativePath": "/min",
3857
+ "autoOutputPathReplace1": "",
3858
+ "autoOutputPathReplace2": "",
3859
+ "autoOutputPathStyle": 0,
3860
+ "bundleFormat": 0,
3861
+ "createSourceMap": 0,
3862
+ "minifyOutput": 1,
3863
+ "syntaxCheckerStyle": 3,
3864
+ "transpilerStyle": 0
3865
+ },
3866
+ "languageDefaultsJSON": {
3867
+ "autoOutputAction": 1,
3868
+ "autoOutputPathFilenamePattern": "*-min.json",
3869
+ "autoOutputPathRelativePath": "",
3870
+ "autoOutputPathReplace1": "",
3871
+ "autoOutputPathReplace2": "",
3872
+ "autoOutputPathStyle": 0,
3873
+ "orderOutput": 0,
3874
+ "outputStyle": 1
3875
+ },
3876
+ "languageDefaultsKIT": {
3877
+ "autoOutputAction": 0,
3878
+ "autoOutputPathFilenamePattern": "*.html",
3879
+ "autoOutputPathRelativePath": "",
3880
+ "autoOutputPathReplace1": "kit",
3881
+ "autoOutputPathReplace2": "html",
3882
+ "autoOutputPathStyle": 0,
3883
+ "shouldRunCacheBuster": 0,
3884
+ "shouldRunHTMLMinifier": 0
3885
+ },
3886
+ "languageDefaultsLESS": {
3887
+ "allowInsecureImports": 0,
3888
+ "autoOutputAction": 0,
3889
+ "autoOutputPathFilenamePattern": "*.css",
3890
+ "autoOutputPathRelativePath": "../css",
3891
+ "autoOutputPathReplace1": "less",
3892
+ "autoOutputPathReplace2": "css",
3893
+ "autoOutputPathStyle": 0,
3894
+ "createSourceMap": 1,
3895
+ "enableJavascript": 0,
3896
+ "ieCompatibility": 1,
3897
+ "mathStyle": 0,
3898
+ "outputStyle": 0,
3899
+ "rewriteURLStyle": 0,
3900
+ "shouldRunAutoprefixer": 0,
3901
+ "shouldRunBless": 0,
3902
+ "strictImports": 0,
3903
+ "strictUnits": 0
3904
+ },
3905
+ "languageDefaultsMARKDOWN": {
3906
+ "autoOutputAction": 0,
3907
+ "autoOutputPathFilenamePattern": "*.html",
3908
+ "autoOutputPathRelativePath": "",
3909
+ "autoOutputPathReplace1": "",
3910
+ "autoOutputPathReplace2": "",
3911
+ "autoOutputPathStyle": 0,
3912
+ "criticStyle": 0,
3913
+ "enableFootnotes": 1,
3914
+ "enableLabels": 1,
3915
+ "enableSmartQuotes": 1,
3916
+ "maskEmailAddresses": 1,
3917
+ "outputFormat": 0,
3918
+ "outputStyle": 0,
3919
+ "parseMetadata": 1,
3920
+ "processHTML": 0,
3921
+ "randomFootnoteNumbers": 0,
3922
+ "shouldRunCacheBuster": 0,
3923
+ "shouldRunHTMLMinifier": 0,
3924
+ "useCompatibilityMode": 0
3925
+ },
3926
+ "languageDefaultsOTHER": {
3927
+ "autoOutputAction": 0,
3928
+ "autoOutputPathFilenamePattern": "*.*",
3929
+ "autoOutputPathRelativePath": "",
3930
+ "autoOutputPathReplace1": "",
3931
+ "autoOutputPathReplace2": "",
3932
+ "autoOutputPathStyle": 0,
3933
+ "shouldRunCacheBuster": 0,
3934
+ "shouldRunHTMLMinifier": 0
3935
+ },
3936
+ "languageDefaultsPNG": {
3937
+ "autoOutputAction": 0,
3938
+ "autoOutputPathFilenamePattern": "*.png",
3939
+ "autoOutputPathRelativePath": "",
3940
+ "autoOutputPathReplace1": "",
3941
+ "autoOutputPathReplace2": "",
3942
+ "autoOutputPathStyle": 0,
3943
+ "optimizerType": 1,
3944
+ "quality": 100
3945
+ },
3946
+ "languageDefaultsPUG": {
3947
+ "autoOutputAction": 0,
3948
+ "autoOutputPathFilenamePattern": "*.html",
3949
+ "autoOutputPathRelativePath": "",
3950
+ "autoOutputPathReplace1": "",
3951
+ "autoOutputPathReplace2": "",
3952
+ "autoOutputPathStyle": 0,
3953
+ "compileDebug": 1,
3954
+ "outputStyle": 0,
3955
+ "shouldRunCacheBuster": 0,
3956
+ "shouldRunHTMLMinifier": 0
3957
+ },
3958
+ "languageDefaultsSASS": {
3959
+ "autoOutputAction": 0,
3960
+ "autoOutputPathFilenamePattern": "*.min.css",
3961
+ "autoOutputPathRelativePath": "../",
3962
+ "autoOutputPathReplace1": "sass",
3963
+ "autoOutputPathReplace2": "css",
3964
+ "autoOutputPathStyle": 2,
3965
+ "createSourceMap": 0,
3966
+ "debugStyle": 0,
3967
+ "decimalPrecision": 10,
3968
+ "outputStyle": 0,
3969
+ "shouldRunAutoprefixer": 0,
3970
+ "shouldRunBless": 0,
3971
+ "useLibsass": 1
3972
+ },
3973
+ "languageDefaultsSLIM": {
3974
+ "autoOutputAction": 0,
3975
+ "autoOutputPathFilenamePattern": "*.html",
3976
+ "autoOutputPathRelativePath": "",
3977
+ "autoOutputPathReplace1": "",
3978
+ "autoOutputPathReplace2": "",
3979
+ "autoOutputPathStyle": 0,
3980
+ "compileOnly": 0,
3981
+ "logicless": 0,
3982
+ "outputFormat": 0,
3983
+ "outputStyle": 1,
3984
+ "railsCompatible": 0,
3985
+ "shouldRunCacheBuster": 0,
3986
+ "shouldRunHTMLMinifier": 0
3987
+ },
3988
+ "languageDefaultsSTYLUS": {
3989
+ "autoOutputAction": 0,
3990
+ "autoOutputPathFilenamePattern": "*.css",
3991
+ "autoOutputPathRelativePath": "../css",
3992
+ "autoOutputPathReplace1": "stylus",
3993
+ "autoOutputPathReplace2": "css",
3994
+ "autoOutputPathStyle": 0,
3995
+ "createSourceMap": 0,
3996
+ "debugStyle": 0,
3997
+ "importCSS": 0,
3998
+ "outputStyle": 0,
3999
+ "resolveRelativeURLS": 0,
4000
+ "shouldRunAutoprefixer": 0,
4001
+ "shouldRunBless": 0
4002
+ },
4003
+ "languageDefaultsSVG": {
4004
+ "autoOutputAction": 2,
4005
+ "autoOutputPathFilenamePattern": "*.svg",
4006
+ "autoOutputPathRelativePath": "",
4007
+ "autoOutputPathReplace1": "",
4008
+ "autoOutputPathReplace2": "",
4009
+ "autoOutputPathStyle": 0,
4010
+ "pluginMask": 3758088159
4011
+ },
4012
+ "languageDefaultsTS": {
4013
+ "autoOutputAction": 0,
4014
+ "autoOutputPathFilenamePattern": "*.js",
4015
+ "autoOutputPathRelativePath": "/js",
4016
+ "autoOutputPathReplace1": "",
4017
+ "autoOutputPathReplace2": "",
4018
+ "autoOutputPathStyle": 0,
4019
+ "createDeclarationFile": 0,
4020
+ "createSourceMap": 0,
4021
+ "minifyOutput": 0,
4022
+ "moduleResolutionType": 0,
4023
+ "moduleType": 2,
4024
+ "removeComments": 0,
4025
+ "targetECMAVersion": 0
4026
+ },
4027
+ "languageDefaultsUserDefined": [
4028
+ ],
4029
+ "overrideExternalServerCSS": 0,
4030
+ "previewPathAddition": "",
4031
+ "skippedFoldersString": "log, _logs, logs, _cache, cache, .idea, /storage/framework/sessions, node_modules",
4032
+ "sourceFolderName": "source",
4033
+ "susyVersion": 3,
4034
+ "tsAllowSyntheticDefaultImports": 0,
4035
+ "tsAllowUnreachableCode": 0,
4036
+ "tsAllowUnusedLabels": 0,
4037
+ "tsAlwaysStrict": 0,
4038
+ "tsDownlevelIteration": 0,
4039
+ "tsEmitBOM": 0,
4040
+ "tsEmitDecoratorMetadata": 0,
4041
+ "tsESModuleInterop": 0,
4042
+ "tsForceConsistentCasingInFileNames": 0,
4043
+ "tsImportHelpers": 0,
4044
+ "tsIsolatedModules": 0,
4045
+ "tsJSXFactory": "React.createElement",
4046
+ "tsKeyofStringsOnly": 0,
4047
+ "tsNoEmitHelpers": 0,
4048
+ "tsNoFallthroughCasesInSwitch": 0,
4049
+ "tsNoImplicitAny": 0,
4050
+ "tsNoImplicitReturns": 0,
4051
+ "tsNoImplicitThis": 0,
4052
+ "tsNoImplicitUseStrict": 0,
4053
+ "tsNoLib": 0,
4054
+ "tsNoResolve": 0,
4055
+ "tsNoStrictGenericChecks": 0,
4056
+ "tsNoUnusedLocals": 0,
4057
+ "tsNoUnusedParameters": 0,
4058
+ "tsPreserveConstEnums": 0,
4059
+ "tsPreserveSymlinks": 0,
4060
+ "tsResolveJsonModule": 0,
4061
+ "tsSkipLibCheck": 0,
4062
+ "tsStrictFunctionTypes": 0,
4063
+ "tsStrictNullChecks": 0,
4064
+ "tsStrictPropertyInitialization": 0,
4065
+ "tsStripInternal": 0,
4066
+ "tsSuppressExcessPropertyErrors": 0,
4067
+ "tsSuppressImplicitAnyIndexErrors": 0,
4068
+ "uglifyDefinesString": "",
4069
+ "uglifyFlags2": {
4070
+ "arguments": {
4071
+ "active": 1,
4072
+ "flagValue": -1
4073
+ },
4074
+ "arrows": {
4075
+ "active": 1,
4076
+ "flagValue": -1
4077
+ },
4078
+ "ascii_only": {
4079
+ "active": 0,
4080
+ "flagValue": -1
4081
+ },
4082
+ "booleans": {
4083
+ "active": 1,
4084
+ "flagValue": -1
4085
+ },
4086
+ "booleans_as_integers": {
4087
+ "active": 0,
4088
+ "flagValue": -1
4089
+ },
4090
+ "braces": {
4091
+ "active": 0,
4092
+ "flagValue": -1
4093
+ },
4094
+ "collapse_vars": {
4095
+ "active": 1,
4096
+ "flagValue": -1
4097
+ },
4098
+ "comments": {
4099
+ "active": 0,
4100
+ "flagValue": -1
4101
+ },
4102
+ "comparisons": {
4103
+ "active": 1,
4104
+ "flagValue": -1
4105
+ },
4106
+ "computed_props": {
4107
+ "active": 1,
4108
+ "flagValue": -1
4109
+ },
4110
+ "conditionals": {
4111
+ "active": 1,
4112
+ "flagValue": -1
4113
+ },
4114
+ "dead_code": {
4115
+ "active": 1,
4116
+ "flagValue": -1
4117
+ },
4118
+ "directives": {
4119
+ "active": 1,
4120
+ "flagValue": -1
4121
+ },
4122
+ "drop_console": {
4123
+ "active": 0,
4124
+ "flagValue": -1
4125
+ },
4126
+ "drop_debugger": {
4127
+ "active": 1,
4128
+ "flagValue": -1
4129
+ },
4130
+ "ecma": {
4131
+ "active": 1,
4132
+ "flagValue": 5
4133
+ },
4134
+ "eval": {
4135
+ "active": 0,
4136
+ "flagValue": -1
4137
+ },
4138
+ "evaluate": {
4139
+ "active": 1,
4140
+ "flagValue": -1
4141
+ },
4142
+ "expression": {
4143
+ "active": 0,
4144
+ "flagValue": -1
4145
+ },
4146
+ "hoist_funs": {
4147
+ "active": 0,
4148
+ "flagValue": -1
4149
+ },
4150
+ "hoist_props": {
4151
+ "active": 1,
4152
+ "flagValue": -1
4153
+ },
4154
+ "hoist_vars": {
4155
+ "active": 0,
4156
+ "flagValue": -1
4157
+ },
4158
+ "ie8": {
4159
+ "active": 0,
4160
+ "flagValue": -1
4161
+ },
4162
+ "if_return": {
4163
+ "active": 1,
4164
+ "flagValue": -1
4165
+ },
4166
+ "indent_level": {
4167
+ "active": 0,
4168
+ "flagValue": 4
4169
+ },
4170
+ "indent_start": {
4171
+ "active": 0,
4172
+ "flagValue": 0
4173
+ },
4174
+ "inline": {
4175
+ "active": 1,
4176
+ "flagValue": 3
4177
+ },
4178
+ "inline_script": {
4179
+ "active": 1,
4180
+ "flagValue": -1
4181
+ },
4182
+ "join_vars": {
4183
+ "active": 1,
4184
+ "flagValue": -1
4185
+ },
4186
+ "keep_classnames": {
4187
+ "active": 0,
4188
+ "flagValue": -1
4189
+ },
4190
+ "keep_fargs": {
4191
+ "active": 1,
4192
+ "flagValue": -1
4193
+ },
4194
+ "keep_fnames": {
4195
+ "active": 0,
4196
+ "flagValue": -1
4197
+ },
4198
+ "keep_infinity": {
4199
+ "active": 0,
4200
+ "flagValue": -1
4201
+ },
4202
+ "keep_quoted_props": {
4203
+ "active": 0,
4204
+ "flagValue": -1
4205
+ },
4206
+ "loops": {
4207
+ "active": 1,
4208
+ "flagValue": -1
4209
+ },
4210
+ "max_line_len": {
4211
+ "active": 1,
4212
+ "flagValue": 32000
4213
+ },
4214
+ "module": {
4215
+ "active": 0,
4216
+ "flagValue": -1
4217
+ },
4218
+ "negate_iife": {
4219
+ "active": 1,
4220
+ "flagValue": -1
4221
+ },
4222
+ "passes": {
4223
+ "active": 1,
4224
+ "flagValue": 1
4225
+ },
4226
+ "properties": {
4227
+ "active": 1,
4228
+ "flagValue": -1
4229
+ },
4230
+ "pure_getters": {
4231
+ "active": 0,
4232
+ "flagValue": -1
4233
+ },
4234
+ "quote_keys": {
4235
+ "active": 0,
4236
+ "flagValue": -1
4237
+ },
4238
+ "quote_style": {
4239
+ "active": 1,
4240
+ "flagValue": 0
4241
+ },
4242
+ "reduce_funcs": {
4243
+ "active": 1,
4244
+ "flagValue": -1
4245
+ },
4246
+ "reduce_vars": {
4247
+ "active": 1,
4248
+ "flagValue": -1
4249
+ },
4250
+ "safari10": {
4251
+ "active": 0,
4252
+ "flagValue": -1
4253
+ },
4254
+ "semicolons": {
4255
+ "active": 1,
4256
+ "flagValue": -1
4257
+ },
4258
+ "sequences": {
4259
+ "active": 1,
4260
+ "flagValue": -1
4261
+ },
4262
+ "shebang": {
4263
+ "active": 1,
4264
+ "flagValue": -1
4265
+ },
4266
+ "side_effects": {
4267
+ "active": 1,
4268
+ "flagValue": -1
4269
+ },
4270
+ "switches": {
4271
+ "active": 1,
4272
+ "flagValue": -1
4273
+ },
4274
+ "toplevel": {
4275
+ "active": 0,
4276
+ "flagValue": -1
4277
+ },
4278
+ "typeofs": {
4279
+ "active": 1,
4280
+ "flagValue": -1
4281
+ },
4282
+ "unsafe": {
4283
+ "active": 0,
4284
+ "flagValue": -1
4285
+ },
4286
+ "unsafe_arrows": {
4287
+ "active": 0,
4288
+ "flagValue": -1
4289
+ },
4290
+ "unsafe_comps": {
4291
+ "active": 0,
4292
+ "flagValue": -1
4293
+ },
4294
+ "unsafe_Function": {
4295
+ "active": 0,
4296
+ "flagValue": -1
4297
+ },
4298
+ "unsafe_math": {
4299
+ "active": 0,
4300
+ "flagValue": -1
4301
+ },
4302
+ "unsafe_methods": {
4303
+ "active": 0,
4304
+ "flagValue": -1
4305
+ },
4306
+ "unsafe_proto": {
4307
+ "active": 0,
4308
+ "flagValue": -1
4309
+ },
4310
+ "unsafe_regexp": {
4311
+ "active": 0,
4312
+ "flagValue": -1
4313
+ },
4314
+ "unsafe_undefined": {
4315
+ "active": 0,
4316
+ "flagValue": -1
4317
+ },
4318
+ "unused": {
4319
+ "active": 1,
4320
+ "flagValue": -1
4321
+ },
4322
+ "warnings": {
4323
+ "active": 0,
4324
+ "flagValue": -1
4325
+ },
4326
+ "webkit": {
4327
+ "active": 0,
4328
+ "flagValue": -1
4329
+ },
4330
+ "wrap_iife": {
4331
+ "active": 0,
4332
+ "flagValue": -1
4333
+ }
4334
+ },
4335
+ "uglifyMangleNames": 1,
4336
+ "uglifyReservedNamesString": "$,exports,require",
4337
+ "websiteRelativeRoot": ""
4338
+ },
4339
+ "settingsFileVersion": "3"
4340
+ }
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: mmuro
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=G87A9UN9CLPH4&lc=US&item_name=Visual%20Form%20Builder&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
4
  Tags: form, forms, contact form, contact forms, form, forms, form to email, email form, email, input, validation, jquery, shortcode, form builder, contact form builder, form manager, form creator
5
- Requires at least: 4.3
6
- Tested up to: 4.9.8
7
- Stable tag: 2.9.9
8
  License: GPLv2 or later
9
 
10
  Build beautiful, fully functional contact forms in only a few minutes without writing PHP, CSS, or HTML.
@@ -231,6 +231,10 @@ function my_scripts_method() {
231
 
232
  == Changelog ==
233
 
 
 
 
 
234
  **Version 2.9.9 - Aug 09, 2018**
235
 
236
  * Update DB check to prevent extra queries when using Multisite install
2
  Contributors: mmuro
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=G87A9UN9CLPH4&lc=US&item_name=Visual%20Form%20Builder&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
4
  Tags: form, forms, contact form, contact forms, form, forms, form to email, email form, email, input, validation, jquery, shortcode, form builder, contact form builder, form manager, form creator
5
+ Requires at least: 4.7
6
+ Tested up to: 5.1.1
7
+ Stable tag: 3.0
8
  License: GPLv2 or later
9
 
10
  Build beautiful, fully functional contact forms in only a few minutes without writing PHP, CSS, or HTML.
231
 
232
  == Changelog ==
233
 
234
+ **Version 3.0 - Apr 1, 2019**
235
+
236
+ * Update admin CSS to use SASS for easier future updates
237
+
238
  **Version 2.9.9 - Aug 09, 2018**
239
 
240
  * Update DB check to prevent extra queries when using Multisite install
visual-form-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Visual Form Builder
4
  Plugin URI: https://wordpress.org/plugins/visual-form-builder/
5
  Description: Dynamically build forms using a simple interface. Forms include jQuery validation, a basic logic-based verification system, and entry tracking.
6
- Version: 2.9.9
7
  Author: Matthew Muro
8
  Author URI: http://vfbpro.com
9
  Text Domain: visual-form-builder
@@ -26,7 +26,7 @@ class Visual_Form_Builder {
26
  * The current version of the plugin.
27
  * @var [type]
28
  */
29
- protected $version = '2.9.9';
30
 
31
  /**
32
  * The current DB version. Used if we need to update the DB later.
3
  Plugin Name: Visual Form Builder
4
  Plugin URI: https://wordpress.org/plugins/visual-form-builder/
5
  Description: Dynamically build forms using a simple interface. Forms include jQuery validation, a basic logic-based verification system, and entry tracking.
6
+ Version: 3.0
7
  Author: Matthew Muro
8
  Author URI: http://vfbpro.com
9
  Text Domain: visual-form-builder
26
  * The current version of the plugin.
27
  * @var [type]
28
  */
29
+ protected $version = '3.0';
30
 
31
  /**
32
  * The current DB version. Used if we need to update the DB later.