1ac4c20f by Jeff Balicki

dd

1 parent 1d9b53b6
...@@ -16999,6 +16999,9 @@ ss3-force-full-width { ...@@ -16999,6 +16999,9 @@ ss3-force-full-width {
16999 font-size: 1.25rem; 16999 font-size: 1.25rem;
17000 } 17000 }
17001 17001
17002 #exampleModalLong {
17003 padding-right: 0px !important;
17004 }
17002 #exampleModalLong .wpcf7-form { 17005 #exampleModalLong .wpcf7-form {
17003 margin-top: -30px; 17006 margin-top: -30px;
17004 } 17007 }
...@@ -17047,6 +17050,13 @@ ss3-force-full-width { ...@@ -17047,6 +17050,13 @@ ss3-force-full-width {
17047 margin-top: 5%; 17050 margin-top: 5%;
17048 font-size: 1rem !important; 17051 font-size: 1rem !important;
17049 } 17052 }
17053 @media (max-width: 786px) {
17054 #exampleModalLong .modal-dialog {
17055 width: 100%;
17056 margin-left: 0px;
17057 margin-top: 40px;
17058 }
17059 }
17050 #exampleModalLong .wpcf7 label { 17060 #exampleModalLong .wpcf7 label {
17051 font-size: 1rem !important; 17061 font-size: 1rem !important;
17052 } 17062 }
...@@ -17117,6 +17127,11 @@ ss3-force-full-width { ...@@ -17117,6 +17127,11 @@ ss3-force-full-width {
17117 padding-bottom: 0px; 17127 padding-bottom: 0px;
17118 margin-bottom: -20px; 17128 margin-bottom: -20px;
17119 } 17129 }
17130 @media (max-width: 786px) {
17131 #exampleModalLong .modal-body {
17132 height: 87vh;
17133 }
17134 }
17120 #exampleModalLong .wpcf7-response-output { 17135 #exampleModalLong .wpcf7-response-output {
17121 margin-top: -20px !important; 17136 margin-top: -20px !important;
17122 } 17137 }
......
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.
...@@ -195,10 +195,17 @@ $(window).on('load resize scroll', function() { ...@@ -195,10 +195,17 @@ $(window).on('load resize scroll', function() {
195 $(document).on("click",".start_a_contact",function() { 195 $(document).on("click",".start_a_contact",function() {
196 $('#exampleModalLong').find('form').append('<input type="hidden" name="planner_id" value="'+$(this).data('store-id')+'"/>') 196 $('#exampleModalLong').find('form').append('<input type="hidden" name="planner_id" value="'+$(this).data('store-id')+'"/>')
197 $('#exampleModalLong').modal('show'); 197 $('#exampleModalLong').modal('show');
198 if($(window).width() < '700px'){
199 $('html, body').css({
200 overflow: 'hidden',
201 height: '100%'
202 });
203 }
198 }); 204 });
199 205
200 $(document).on("click",".find-a-planner-close",function() { 206 $(document).on("click",".find-a-planner-close",function() {
201 $('#exampleModalLong').modal('hide'); 207 $('#exampleModalLong').modal('hide');
208
202 }); 209 });
203 210
204 211
......
...@@ -472,7 +472,7 @@ span.number-med.last{ ...@@ -472,7 +472,7 @@ span.number-med.last{
472 } 472 }
473 473
474 #exampleModalLong { 474 #exampleModalLong {
475 475 padding-right: 0px !important;
476 .wpcf7-form{ 476 .wpcf7-form{
477 margin-top: -30px; 477 margin-top: -30px;
478 } 478 }
...@@ -526,6 +526,12 @@ span.number-med.last{ ...@@ -526,6 +526,12 @@ span.number-med.last{
526 width: 400px; 526 width: 400px;
527 margin-top: 5%; 527 margin-top: 5%;
528 font-size:16px !important; 528 font-size:16px !important;
529 @media (max-width: 786px) {
530 width: 100%;
531 margin-left: 0px;
532 margin-top: 40px;
533
534 }
529 } 535 }
530 .wpcf7 label { 536 .wpcf7 label {
531 font-size:16px !important; 537 font-size:16px !important;
...@@ -598,6 +604,9 @@ label.container{ ...@@ -598,6 +604,9 @@ label.container{
598 .modal-body { 604 .modal-body {
599 padding-bottom: 0px; 605 padding-bottom: 0px;
600 margin-bottom: -20px; 606 margin-bottom: -20px;
607 @media (max-width: 786px) {
608 height: 87vh;
609 }
601 } 610 }
602 .wpcf7-response-output{ 611 .wpcf7-response-output{
603 margin-top: -20px !important; 612 margin-top: -20px !important;
......
...@@ -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.3016 8 Version: 1.1.3017
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
......