css
Showing
7 changed files
with
27 additions
and
1 deletions
| ... | @@ -15973,6 +15973,7 @@ h4, .h4 { | ... | @@ -15973,6 +15973,7 @@ h4, .h4 { |
| 15973 | padding: 15px 20px; | 15973 | padding: 15px 20px; |
| 15974 | } | 15974 | } |
| 15975 | } | 15975 | } |
| 15976 | .numbers-second .wp-block-column:first-child a.wp-block-button__link:focus, | ||
| 15976 | .numbers-second .wp-block-column:first-child a.wp-block-button__link:hover { | 15977 | .numbers-second .wp-block-column:first-child a.wp-block-button__link:hover { |
| 15977 | background-color: #005eb8; | 15978 | background-color: #005eb8; |
| 15978 | } | 15979 | } |
| ... | @@ -16168,6 +16169,10 @@ h4, .h4 { | ... | @@ -16168,6 +16169,10 @@ h4, .h4 { |
| 16168 | color: #fff; | 16169 | color: #fff; |
| 16169 | width: unset; | 16170 | width: unset; |
| 16170 | } | 16171 | } |
| 16172 | .wp-block-group.register .wpcf7 .wpcf7-submit:focus, | ||
| 16173 | .wp-block-group.register .wpcf7 .cf7mls_next.action-button:focus { | ||
| 16174 | background-color: #005eb8; | ||
| 16175 | } | ||
| 16171 | @media (max-width: 768px) { | 16176 | @media (max-width: 768px) { |
| 16172 | .wp-block-group.register .wpcf7 .wpcf7-submit { | 16177 | .wp-block-group.register .wpcf7 .wpcf7-submit { |
| 16173 | margin-top: 50px; | 16178 | margin-top: 50px; |
| ... | @@ -16312,6 +16317,14 @@ h4, .h4 { | ... | @@ -16312,6 +16317,14 @@ h4, .h4 { |
| 16312 | overflow: visible; | 16317 | overflow: visible; |
| 16313 | } | 16318 | } |
| 16314 | 16319 | ||
| 16320 | .wpcf7-not-valid-tip { | ||
| 16321 | display: none; | ||
| 16322 | } | ||
| 16323 | |||
| 16324 | .wpcf7-not-valid { | ||
| 16325 | border: 1px solid red !important; | ||
| 16326 | } | ||
| 16327 | |||
| 16315 | .cf7mls_progress_bar { | 16328 | .cf7mls_progress_bar { |
| 16316 | width: 18% !important; | 16329 | width: 18% !important; |
| 16317 | margin: 0 !important; | 16330 | margin: 0 !important; | ... | ... |
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
| 1 | // Add your custom JS here. | 1 | // Add your custom JS here. |
| 2 | jQuery( document ).ready(function($) { | 2 | jQuery( document ).ready(function($) { |
| 3 | $('.wp-block-button__link').attr('tabindex', 0); | 3 | $('.wp-block-button__link').attr('tabindex', 0); |
| 4 | $('.cf7mls_btn').attr('tabindex', 0); | ||
| 5 | |||
| 4 | 6 | ||
| 5 | $(document).on("click","#register-here",function() { | 7 | $(document).on("click","#register-here",function() { |
| 6 | $('.wp-block-group.register').toggle(); | 8 | $('.wp-block-group.register').toggle(); | ... | ... |
| ... | @@ -318,6 +318,7 @@ | ... | @@ -318,6 +318,7 @@ |
| 318 | padding: 15px 20px; | 318 | padding: 15px 20px; |
| 319 | } | 319 | } |
| 320 | } | 320 | } |
| 321 | a.wp-block-button__link:focus, | ||
| 321 | a.wp-block-button__link:hover{ | 322 | a.wp-block-button__link:hover{ |
| 322 | background-color: #005eb8; | 323 | background-color: #005eb8; |
| 323 | } | 324 | } |
| ... | @@ -495,6 +496,10 @@ | ... | @@ -495,6 +496,10 @@ |
| 495 | color: #fff; | 496 | color: #fff; |
| 496 | width: unset; | 497 | width: unset; |
| 497 | } | 498 | } |
| 499 | .wpcf7-submit:focus, | ||
| 500 | .cf7mls_next.action-button:focus { | ||
| 501 | background-color: #005eb8; | ||
| 502 | } | ||
| 498 | .wpcf7-submit { | 503 | .wpcf7-submit { |
| 499 | @media (max-width: 768px) { | 504 | @media (max-width: 768px) { |
| 500 | margin-top: 50px; | 505 | margin-top: 50px; |
| ... | @@ -627,6 +632,12 @@ | ... | @@ -627,6 +632,12 @@ |
| 627 | .fieldset-cf7mls-wrapper { | 632 | .fieldset-cf7mls-wrapper { |
| 628 | overflow: visible; | 633 | overflow: visible; |
| 629 | } | 634 | } |
| 635 | .wpcf7-not-valid-tip { | ||
| 636 | display: none; | ||
| 637 | } | ||
| 638 | .wpcf7-not-valid { | ||
| 639 | border: 1px solid red !important; | ||
| 640 | } | ||
| 630 | 641 | ||
| 631 | .cf7mls_progress_bar { | 642 | .cf7mls_progress_bar { |
| 632 | width: 18% !important; | 643 | width: 18% !important; | ... | ... |
| ... | @@ -5,7 +5,7 @@ | ... | @@ -5,7 +5,7 @@ |
| 5 | Author: the Understrap Contributors | 5 | Author: the Understrap Contributors |
| 6 | Author URI: https://github.com/understrap/understrap-child/graphs/contributors | 6 | Author URI: https://github.com/understrap/understrap-child/graphs/contributors |
| 7 | Template: understrap | 7 | Template: understrap |
| 8 | Version: 1.1.22 | 8 | Version: 1.1.23 |
| 9 | License: GNU General Public License v2 or later | 9 | License: GNU General Public License v2 or later |
| 10 | License URI: http://www.gnu.org/licenses/gpl-2.0.html | 10 | License URI: http://www.gnu.org/licenses/gpl-2.0.html |
| 11 | Text Domain: understrap-child | 11 | Text Domain: understrap-child | ... | ... |
-
Please register or sign in to post a comment