cf7-conditional-fields
Last commit date
js
2 months ago
jsdoc-out
1 month ago
test-results
2 months ago
Wpcf7cfMailParser.php
1 month ago
admin-style.css
2 years ago
admin-style.css.map
2 years ago
admin-style.scss
4 years ago
admin.php
2 years ago
cf7cf.php
1 year ago
conditional-fields.php
1 month ago
contact-form-7-conditional-fields.php
1 year ago
init.php
1 month ago
readme.txt
1 month ago
style.css
2 months ago
tg_pane_group.php
2 months ago
wpcf7cf-options.php
2 months ago
style.css
81 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_multistep .wpcf7cf_step { |
| 18 | /* display:none; */ |
| 19 | width: 100%; |
| 20 | } |
| 21 | |
| 22 | .wpcf7cf_multistep .wpcf7cf_step .step-title { |
| 23 | display: none; |
| 24 | } |
| 25 | |
| 26 | .wpcf7cf_multistep .wpcf7cf_steps-dots { |
| 27 | display: flex; |
| 28 | width: 100%; |
| 29 | margin-bottom: 20px; |
| 30 | flex-wrap: wrap; |
| 31 | } |
| 32 | |
| 33 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot .step-index { |
| 34 | display: inline-block; |
| 35 | border-radius: 50%; |
| 36 | background: #dfdfdf; |
| 37 | color: #000000; |
| 38 | width: 40px; |
| 39 | height: 40px; |
| 40 | line-height: 40px; |
| 41 | text-align: center; |
| 42 | } |
| 43 | |
| 44 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot { |
| 45 | border-bottom: 5px solid #dfdfdf; |
| 46 | text-align: center; |
| 47 | flex: 1; |
| 48 | padding: 15px; |
| 49 | min-width: 120px; |
| 50 | } |
| 51 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed { |
| 52 | border-bottom: 5px solid #333; |
| 53 | } |
| 54 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active { |
| 55 | border-bottom: 5px solid #333; |
| 56 | font-weight: bold; |
| 57 | } |
| 58 | |
| 59 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed .step-index { |
| 60 | background-color: #333; |
| 61 | color: #ffffff; |
| 62 | } |
| 63 | |
| 64 | .wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active .step-index { |
| 65 | background-color: #333; |
| 66 | color: #ffffff; |
| 67 | } |
| 68 | |
| 69 | .wpcf7cf_step_controls .disabled { |
| 70 | pointer-events: none; |
| 71 | cursor: default; |
| 72 | opacity: .5; |
| 73 | } |
| 74 | /* Per-sub repeater controls (remove) */ |
| 75 | .wpcf7cf_repeater_sub_controls { |
| 76 | display: inline-flex; |
| 77 | gap: 4px; |
| 78 | margin: 4px 0; |
| 79 | align-items: center; |
| 80 | } |
| 81 |