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
88 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 | } |
| 15 | |
| 16 | .wpcf7cf_steps { |
| 17 | /* display:flex; */ |
| 18 | } |
| 19 | |
| 20 | .wpcf7cf_multistep .wpcf7cf_step { |
| 21 | /* display:none; */ |
| 22 | width: 100%; |
| 23 | } |
| 24 | |
| 25 | .wpcf7cf_multistep .wpcf7cf_steps-dots { |
| 26 | display: flex; |
| 27 | width: 100%; |
| 28 | margin-bottom: 20px; |
| 29 | } |
| 30 | |
| 31 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot .step-index { |
| 32 | display: inline-block; |
| 33 | border-radius: 50%; |
| 34 | background: #dfdfdf; |
| 35 | color: #000000; |
| 36 | width: 40px; |
| 37 | height: 40px; |
| 38 | line-height: 40px; |
| 39 | text-align: center; |
| 40 | } |
| 41 | |
| 42 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot { |
| 43 | border-bottom: 5px solid #dfdfdf; |
| 44 | text-align: center; |
| 45 | flex: 1; |
| 46 | padding: 15px; |
| 47 | } |
| 48 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed { |
| 49 | border-bottom: 5px solid #333; |
| 50 | } |
| 51 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active { |
| 52 | border-bottom: 5px solid #333; |
| 53 | font-weight: bold; |
| 54 | } |
| 55 | |
| 56 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed .step-index { |
| 57 | background-color: #333; |
| 58 | color: #ffffff; |
| 59 | } |
| 60 | |
| 61 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active .step-index { |
| 62 | background-color: #333; |
| 63 | color: #ffffff; |
| 64 | } |
| 65 | |
| 66 | .wpcf7cf_step_controls .disabled { |
| 67 | pointer-events: none; |
| 68 | cursor: default; |
| 69 | opacity: .5; |
| 70 | } |
| 71 | |
| 72 | .page-template-tpl-form-tester .wpcf7cf_repeater { |
| 73 | border: 3px solid #f0f0f0; |
| 74 | background: #d9d9d9; |
| 75 | padding: 20px 40px 20px 20px; |
| 76 | } |
| 77 | |
| 78 | .page-template-tpl-form-tester .wpcf7cf_repeater_sub { |
| 79 | border: 3px solid #f0f0f0; |
| 80 | background: #ffffff; |
| 81 | padding: 20px 40px 20px 20px; |
| 82 | } |
| 83 | |
| 84 | .page-template-tpl-form-tester [data-class="wpcf7cf_group"] { |
| 85 | border: 3px solid #f0f0f0; |
| 86 | background: #8efca6b9; |
| 87 | padding: 20px 40px 20px 20px; |
| 88 | } |