5f47809b by Jeff Balicki

eee

1 parent 68f92357
...@@ -16357,6 +16357,10 @@ h4, .h4 { ...@@ -16357,6 +16357,10 @@ h4, .h4 {
16357 width: 22% !important; 16357 width: 22% !important;
16358 } 16358 }
16359 } 16359 }
16360 .wp-block-group.register .wpcf7 .chars-count {
16361 text-transform: none;
16362 font-size: 0.875rem;
16363 }
16360 .wp-block-group.register .wpcf7 .acceptance-548 { 16364 .wp-block-group.register .wpcf7 .acceptance-548 {
16361 text-transform: none; 16365 text-transform: none;
16362 } 16366 }
......
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($) { ...@@ -38,6 +38,18 @@ jQuery( document ).ready(function($) {
38 38
39 }); 39 });
40 40
41 var maxLength = 200;
42
43 $('#description-of-services').keyup(function() {
44 console.log('keyup');
45 var length = $(this).val().length;
46 console.log(length);
47 var length = maxLength - length;
48 console.log(length);
49 $('#chars').text(length);
50 });
51
52
41 53
42 54
43 $( "#wpsl-search-input" ).on( "keydown", function(event) { 55 $( "#wpsl-search-input" ).on( "keydown", function(event) {
......
...@@ -665,7 +665,11 @@ ...@@ -665,7 +665,11 @@
665 width: 22%!important; 665 width: 22%!important;
666 } 666 }
667 } 667 }
668 668 .chars-count{
669 text-transform: none;
670 font-size: 14px;
671
672 }
669 .acceptance-548 { 673 .acceptance-548 {
670 text-transform: none; 674 text-transform: none;
671 } 675 }
......
...@@ -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.3013 8 Version: 1.1.3014
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
......