29f187df by Jeff Balicki

css

1 parent ba401c2b
......@@ -15973,6 +15973,7 @@ h4, .h4 {
padding: 15px 20px;
}
}
.numbers-second .wp-block-column:first-child a.wp-block-button__link:focus,
.numbers-second .wp-block-column:first-child a.wp-block-button__link:hover {
background-color: #005eb8;
}
......@@ -16168,6 +16169,10 @@ h4, .h4 {
color: #fff;
width: unset;
}
.wp-block-group.register .wpcf7 .wpcf7-submit:focus,
.wp-block-group.register .wpcf7 .cf7mls_next.action-button:focus {
background-color: #005eb8;
}
@media (max-width: 768px) {
.wp-block-group.register .wpcf7 .wpcf7-submit {
margin-top: 50px;
......@@ -16312,6 +16317,14 @@ h4, .h4 {
overflow: visible;
}
.wpcf7-not-valid-tip {
display: none;
}
.wpcf7-not-valid {
border: 1px solid red !important;
}
.cf7mls_progress_bar {
width: 18% !important;
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.
// Add your custom JS here.
jQuery( document ).ready(function($) {
$('.wp-block-button__link').attr('tabindex', 0);
$('.cf7mls_btn').attr('tabindex', 0);
$(document).on("click","#register-here",function() {
$('.wp-block-group.register').toggle();
......
......@@ -318,6 +318,7 @@
padding: 15px 20px;
}
}
a.wp-block-button__link:focus,
a.wp-block-button__link:hover{
background-color: #005eb8;
}
......@@ -495,6 +496,10 @@
color: #fff;
width: unset;
}
.wpcf7-submit:focus,
.cf7mls_next.action-button:focus {
background-color: #005eb8;
}
.wpcf7-submit {
@media (max-width: 768px) {
margin-top: 50px;
......@@ -627,7 +632,13 @@
.fieldset-cf7mls-wrapper {
overflow: visible;
}
.wpcf7-not-valid-tip {
display: none;
}
.wpcf7-not-valid {
border: 1px solid red !important;
}
.cf7mls_progress_bar {
width: 18% !important;
margin: 0 !important;
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.1.22
Version: 1.1.23
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......