cf7-conditional-fields
Last commit date
js
6 years ago
Wpcf7cfMailParser.php
6 years ago
admin-style.css
6 years ago
admin-style.css.map
6 years ago
admin-style.scss
6 years ago
admin.php
6 years ago
cf7cf.php
6 years ago
contact-form-7-conditional-fields.php
6 years ago
init.php
6 years ago
readme.txt
6 years ago
style.css
6 years ago
tg_pane_group.php
6 years ago
wpcf7cf-options.php
6 years ago
style.css
89 lines
| 1 | /* initially hide all groups (even before JS is loaded), so the page will never render them while loading */ |
| 2 | [data-class="wpcf7cf_group"], .wpcf7cf_remove, .wpcf7cf_add { |
| 3 | display:none; |
| 4 | } |
| 5 | |
| 6 | .wpcf7cf_repeater_sub { |
| 7 | margin-bottom: 20px; |
| 8 | } |
| 9 | |
| 10 | .wpcf7cf_repeater_controls, .wpcf7cf_step_controls { |
| 11 | display: flex; |
| 12 | justify-content: space-between; |
| 13 | flex-wrap: wrap; |
| 14 | margin-top: 20px; |
| 15 | } |
| 16 | |
| 17 | .wpcf7cf_steps { |
| 18 | /* display:flex; */ |
| 19 | } |
| 20 | |
| 21 | .wpcf7cf_multistep .wpcf7cf_step { |
| 22 | /* display:none; */ |
| 23 | width: 100%; |
| 24 | } |
| 25 | |
| 26 | .wpcf7cf_multistep .wpcf7cf_steps-dots { |
| 27 | display: flex; |
| 28 | width: 100%; |
| 29 | margin-bottom: 20px; |
| 30 | } |
| 31 | |
| 32 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot .step-index { |
| 33 | display: inline-block; |
| 34 | border-radius: 50%; |
| 35 | background: #dfdfdf; |
| 36 | color: #000000; |
| 37 | width: 40px; |
| 38 | height: 40px; |
| 39 | line-height: 40px; |
| 40 | text-align: center; |
| 41 | } |
| 42 | |
| 43 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot { |
| 44 | border-bottom: 5px solid #dfdfdf; |
| 45 | text-align: center; |
| 46 | flex: 1; |
| 47 | padding: 15px; |
| 48 | } |
| 49 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed { |
| 50 | border-bottom: 5px solid #333; |
| 51 | } |
| 52 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active { |
| 53 | border-bottom: 5px solid #333; |
| 54 | font-weight: bold; |
| 55 | } |
| 56 | |
| 57 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed .step-index { |
| 58 | background-color: #333; |
| 59 | color: #ffffff; |
| 60 | } |
| 61 | |
| 62 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active .step-index { |
| 63 | background-color: #333; |
| 64 | color: #ffffff; |
| 65 | } |
| 66 | |
| 67 | .wpcf7cf_step_controls .disabled { |
| 68 | pointer-events: none; |
| 69 | cursor: default; |
| 70 | opacity: .5; |
| 71 | } |
| 72 | |
| 73 | .page-template-tpl-form-tester .wpcf7cf_repeater { |
| 74 | border: 3px solid #f0f0f0; |
| 75 | background: #d9d9d9; |
| 76 | padding: 20px 40px 20px 20px; |
| 77 | } |
| 78 | |
| 79 | .page-template-tpl-form-tester .wpcf7cf_repeater_sub { |
| 80 | border: 3px solid #f0f0f0; |
| 81 | background: #ffffff; |
| 82 | padding: 20px 40px 20px 20px; |
| 83 | } |
| 84 | |
| 85 | .page-template-tpl-form-tester [data-class="wpcf7cf_group"] { |
| 86 | border: 3px solid #f0f0f0; |
| 87 | background: #8efca6b9; |
| 88 | padding: 20px 40px 20px 20px; |
| 89 | } |