5f47809b by Jeff Balicki

eee

1 parent 68f92357
......@@ -16357,6 +16357,10 @@ h4, .h4 {
width: 22% !important;
}
}
.wp-block-group.register .wpcf7 .chars-count {
text-transform: none;
font-size: 0.875rem;
}
.wp-block-group.register .wpcf7 .acceptance-548 {
text-transform: none;
}
......
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.
......@@ -38,6 +38,18 @@ jQuery( document ).ready(function($) {
});
var maxLength = 200;
$('#description-of-services').keyup(function() {
console.log('keyup');
var length = $(this).val().length;
console.log(length);
var length = maxLength - length;
console.log(length);
$('#chars').text(length);
});
$( "#wpsl-search-input" ).on( "keydown", function(event) {
......
......@@ -665,7 +665,11 @@
width: 22%!important;
}
}
.chars-count{
text-transform: none;
font-size: 14px;
}
.acceptance-548 {
text-transform: none;
}
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.1.3013
Version: 1.1.3014
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......