cba5587f by Jeff Balicki

sss

1 parent 84e3e541
......@@ -17160,7 +17160,7 @@ ss3-force-full-width {
}
@media (max-width: 786px) {
#exampleModalLong .modal-body {
height: 87vh;
height: 100%;
}
}
#exampleModalLong .wpcf7-response-output {
......@@ -17224,6 +17224,11 @@ ss3-force-full-width {
.topics .wpcf7-list-item {
width: 190px;
}
@media (max-width: 786px) {
.topics .wpcf7-list-item {
width: 150px;
}
}
/* custom checkbox styling for contact form 7 checkbox */
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($) {
$( "#wpsl-search-input" ).on( "keydown", function(event) {
if(event.which == 13){
$('#wpsl-gmap').removeClass('full');
$('#wpsl-result-list').show();
}
});
$( "#wpsl-search-btn" ).on( "keydown", function(event) {
if(event.which == 13){
$('#wpsl-gmap').removeClass('full');
$('#wpsl-result-list').show();
}
});
......@@ -79,6 +81,7 @@ jQuery( document ).ready(function($) {
if($(this).val() !="" && $('#wpsl-gmap').hasClass('full')){
$('#wpsl-gmap').removeClass('full');
$("#wpsl-search-btn").click();
$('#wpsl-result-list').show();
}
});
......
......@@ -639,7 +639,7 @@ label.container{
padding-bottom: 0px;
margin-bottom: -20px;
@media (max-width: 786px) {
height: 87vh;
height: 100%;
}
}
.wpcf7-response-output{
......@@ -710,6 +710,9 @@ height: 87vh;
margin-bottom: 10px;
.wpcf7-list-item{
width: 190px;
@media (max-width: 786px) {
width: 150px;
}
}
}
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.1.30378
Version: 1.1.30379
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......
......@@ -335,7 +335,8 @@ td, th {
}
#wpsl-result-list{
height:700px !important;
height:620px !important;
display: none;
}
#wpsl-stores{
height:620px !important
......