2151c539 by Jeff Balicki

WWW

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 56e73ec1
...@@ -17127,7 +17127,7 @@ ul.sf_date_field .sf-datepicker { ...@@ -17127,7 +17127,7 @@ ul.sf_date_field .sf-datepicker {
17127 } 17127 }
17128 17128
17129 #advance-search-modal { 17129 #advance-search-modal {
17130 z-index: 999; 17130 z-index: 9997;
17131 position: fixed; 17131 position: fixed;
17132 margin-top: 1%; 17132 margin-top: 1%;
17133 } 17133 }
...@@ -17680,6 +17680,17 @@ ul.sf_date_field .sf-datepicker { ...@@ -17680,6 +17680,17 @@ ul.sf_date_field .sf-datepicker {
17680 } 17680 }
17681 } 17681 }
17682 17682
17683 .overlay {
17684 width: 100%;
17685 height: 100%;
17686 position: fixed;
17687 top: 0;
17688 left: 0;
17689 background: rgba(0, 0, 0, 0.8);
17690 z-index: 9995;
17691 display: none;
17692 }
17693
17683 .search-results .search-field { 17694 .search-results .search-field {
17684 border: 0; 17695 border: 0;
17685 border-bottom: 0.0625rem solid #707070; 17696 border-bottom: 0.0625rem solid #707070;
......
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.
...@@ -82,6 +82,6 @@ if ( is_front_page() ) { ...@@ -82,6 +82,6 @@ if ( is_front_page() ) {
82 </div><!-- #content --> 82 </div><!-- #content -->
83 83
84 </div><!-- #full-width-page-wrapper --> 84 </div><!-- #full-width-page-wrapper -->
85 85 <div class="overlay"></div>
86 <?php 86 <?php
87 get_footer(); 87 get_footer();
......
...@@ -20727,6 +20727,8 @@ ...@@ -20727,6 +20727,8 @@
20727 $('[data-sf-form-id="399"]').trigger("submit"); 20727 $('[data-sf-form-id="399"]').trigger("submit");
20728 //$('[data-sf-form-id="102"]').trigger("submit"); 20728 //$('[data-sf-form-id="102"]').trigger("submit");
20729 $('.searching-loading').show(); 20729 $('.searching-loading').show();
20730 $('.overlay').show();
20731 $('#full-width-page-wrapper #content').css('opacity', '0');
20730 setTimeout(() => { 20732 setTimeout(() => {
20731 window.location.href = window.location.href; 20733 window.location.href = window.location.href;
20732 }, "5000"); 20734 }, "5000");
......
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.
...@@ -79,10 +79,12 @@ var Search = (function($) { ...@@ -79,10 +79,12 @@ var Search = (function($) {
79 79
80 80
81 $(document).on("click", '#advance-search-modal [name="_sf_submit"]', function(e){ 81 $(document).on("click", '#advance-search-modal [name="_sf_submit"]', function(e){
82 $('#advance-search-modal .searchandfilter').hide(); 82 $('#advance-search-modal .searchandfilter').hide();
83 $('[data-sf-form-id="399"]').trigger("submit"); 83 $('[data-sf-form-id="399"]').trigger("submit");
84 //$('[data-sf-form-id="102"]').trigger("submit"); 84 //$('[data-sf-form-id="102"]').trigger("submit");
85 $('.searching-loading').show(); 85 $('.searching-loading').show();
86 $('.overlay').show();
87 $('#full-width-page-wrapper #content').css('opacity', '0');
86 setTimeout(() => { 88 setTimeout(() => {
87 window.location.href = window.location.href 89 window.location.href = window.location.href
88 }, "5000"); 90 }, "5000");
......
...@@ -506,7 +506,7 @@ ul.sf_date_field { ...@@ -506,7 +506,7 @@ ul.sf_date_field {
506 } 506 }
507 507
508 #advance-search-modal { 508 #advance-search-modal {
509 z-index: 999; 509 z-index: 9997;
510 position: fixed; 510 position: fixed;
511 margin-top: 1%; 511 margin-top: 1%;
512 @media screen and (max-width: 56.25rem) { 512 @media screen and (max-width: 56.25rem) {
...@@ -1113,4 +1113,16 @@ ul.sf_date_field { ...@@ -1113,4 +1113,16 @@ ul.sf_date_field {
1113 } 1113 }
1114 } 1114 }
1115 1115
1116 }
1117
1118 .overlay{
1119 width: 100%;
1120 height: 100%;
1121 position: fixed;
1122 top: 0;
1123 left: 0;
1124 background: rgba(0,0,0,.8);
1125 z-index: 9995;
1126 display: none;
1127
1116 } 1128 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
2 Theme Name: MSF CA Child 2 Theme Name: MSF CA Child
3 Author: Tenzing Communications 3 Author: Tenzing Communications
4 Template: msf-ca 4 Template: msf-ca
5 Version: 1.0.37 5 Version: 1.0.38
6 */ 6 */
...\ No newline at end of file ...\ No newline at end of file
......