cba5587f by Jeff Balicki

sss

1 parent 84e3e541
...@@ -17160,7 +17160,7 @@ ss3-force-full-width { ...@@ -17160,7 +17160,7 @@ ss3-force-full-width {
17160 } 17160 }
17161 @media (max-width: 786px) { 17161 @media (max-width: 786px) {
17162 #exampleModalLong .modal-body { 17162 #exampleModalLong .modal-body {
17163 height: 87vh; 17163 height: 100%;
17164 } 17164 }
17165 } 17165 }
17166 #exampleModalLong .wpcf7-response-output { 17166 #exampleModalLong .wpcf7-response-output {
...@@ -17224,6 +17224,11 @@ ss3-force-full-width { ...@@ -17224,6 +17224,11 @@ ss3-force-full-width {
17224 .topics .wpcf7-list-item { 17224 .topics .wpcf7-list-item {
17225 width: 190px; 17225 width: 190px;
17226 } 17226 }
17227 @media (max-width: 786px) {
17228 .topics .wpcf7-list-item {
17229 width: 150px;
17230 }
17231 }
17227 17232
17228 /* custom checkbox styling for contact form 7 checkbox */ 17233 /* custom checkbox styling for contact form 7 checkbox */
17229 span.wpcf7-list-item { 17234 span.wpcf7-list-item {
......
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.
...@@ -64,12 +64,14 @@ jQuery( document ).ready(function($) { ...@@ -64,12 +64,14 @@ jQuery( document ).ready(function($) {
64 $( "#wpsl-search-input" ).on( "keydown", function(event) { 64 $( "#wpsl-search-input" ).on( "keydown", function(event) {
65 if(event.which == 13){ 65 if(event.which == 13){
66 $('#wpsl-gmap').removeClass('full'); 66 $('#wpsl-gmap').removeClass('full');
67 $('#wpsl-result-list').show();
67 } 68 }
68 }); 69 });
69 70
70 $( "#wpsl-search-btn" ).on( "keydown", function(event) { 71 $( "#wpsl-search-btn" ).on( "keydown", function(event) {
71 if(event.which == 13){ 72 if(event.which == 13){
72 $('#wpsl-gmap').removeClass('full'); 73 $('#wpsl-gmap').removeClass('full');
74 $('#wpsl-result-list').show();
73 } 75 }
74 }); 76 });
75 77
...@@ -79,6 +81,7 @@ jQuery( document ).ready(function($) { ...@@ -79,6 +81,7 @@ jQuery( document ).ready(function($) {
79 if($(this).val() !="" && $('#wpsl-gmap').hasClass('full')){ 81 if($(this).val() !="" && $('#wpsl-gmap').hasClass('full')){
80 $('#wpsl-gmap').removeClass('full'); 82 $('#wpsl-gmap').removeClass('full');
81 $("#wpsl-search-btn").click(); 83 $("#wpsl-search-btn").click();
84 $('#wpsl-result-list').show();
82 } 85 }
83 }); 86 });
84 87
......
...@@ -639,7 +639,7 @@ label.container{ ...@@ -639,7 +639,7 @@ label.container{
639 padding-bottom: 0px; 639 padding-bottom: 0px;
640 margin-bottom: -20px; 640 margin-bottom: -20px;
641 @media (max-width: 786px) { 641 @media (max-width: 786px) {
642 height: 87vh; 642 height: 100%;
643 } 643 }
644 } 644 }
645 .wpcf7-response-output{ 645 .wpcf7-response-output{
...@@ -710,6 +710,9 @@ height: 87vh; ...@@ -710,6 +710,9 @@ height: 87vh;
710 margin-bottom: 10px; 710 margin-bottom: 10px;
711 .wpcf7-list-item{ 711 .wpcf7-list-item{
712 width: 190px; 712 width: 190px;
713 @media (max-width: 786px) {
714 width: 150px;
715 }
713 } 716 }
714 } 717 }
715 718
......
...@@ -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.30378 8 Version: 1.1.30379
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
......
...@@ -333,9 +333,10 @@ td, th { ...@@ -333,9 +333,10 @@ td, th {
333 margin-top:40px; 333 margin-top:40px;
334 width: 100%; 334 width: 100%;
335 } 335 }
336 336
337 #wpsl-result-list{ 337 #wpsl-result-list{
338 height:700px !important; 338 height:620px !important;
339 display: none;
339 } 340 }
340 #wpsl-stores{ 341 #wpsl-stores{
341 height:620px !important 342 height:620px !important
......