0654ad18 by Jeff Balicki

switches

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 81bd2c20
...@@ -16935,7 +16935,7 @@ html.mega-menu-primary-off-canvas-open #wpadminbar { ...@@ -16935,7 +16935,7 @@ html.mega-menu-primary-off-canvas-open #wpadminbar {
16935 position: fixed; 16935 position: fixed;
16936 width: 100%; 16936 width: 100%;
16937 background-color: #fff; 16937 background-color: #fff;
16938 z-index: 999; 16938 z-index: 99;
16939 top: 0rem; 16939 top: 0rem;
16940 } 16940 }
16941 16941
...@@ -20015,6 +20015,7 @@ ul.sf_date_field .sf-datepicker { ...@@ -20015,6 +20015,7 @@ ul.sf_date_field .sf-datepicker {
20015 } 20015 }
20016 20016
20017 #gt_float_wrapper { 20017 #gt_float_wrapper {
20018 z-index: 9995 !important;
20018 right: 0rem !important; 20019 right: 0rem !important;
20019 } 20020 }
20020 @media screen and (max-width: 62.5rem) { 20021 @media screen and (max-width: 62.5rem) {
...@@ -20044,6 +20045,11 @@ ul.sf_date_field .sf-datepicker { ...@@ -20044,6 +20045,11 @@ ul.sf_date_field .sf-datepicker {
20044 display: none; 20045 display: none;
20045 } 20046 }
20046 20047
20048 #gt_float_wrapper:has(.gt_arrow_rotate) {
20049 z-index: 9999 !important;
20050 background: #fff;
20051 }
20052
20047 .gt_float_switcher .gt-selected { 20053 .gt_float_switcher .gt-selected {
20048 background-color: transparent !important; 20054 background-color: transparent !important;
20049 } 20055 }
...@@ -20444,6 +20450,16 @@ ul.sf_date_field .sf-datepicker { ...@@ -20444,6 +20450,16 @@ ul.sf_date_field .sf-datepicker {
20444 text-decoration: none; 20450 text-decoration: none;
20445 } 20451 }
20446 20452
20453 #pojo-a11y-toolbar {
20454 z-index: 9995 !important;
20455 }
20456
20457 #pojo-a11y-toolbar.pojo-a11y-toolbar-open {
20458 width: 200px;
20459 z-index: 9999 !important;
20460 background-color: #fff;
20461 }
20462
20447 .pojo-a11y-resize-font-130 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row { 20463 .pojo-a11y-resize-font-130 #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
20448 height: 80vh; 20464 height: 80vh;
20449 overflow: scroll; 20465 overflow: scroll;
......
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.
...@@ -26246,6 +26246,22 @@ ...@@ -26246,6 +26246,22 @@
26246 document.addEventListener('wpcf7mailsent', function (event) { 26246 document.addEventListener('wpcf7mailsent', function (event) {
26247 jQuery('.appArea.responsive').hide(); 26247 jQuery('.appArea.responsive').hide();
26248 }, true); 26248 }, true);
26249 jQuery(document).ready(function ($) {
26250 $(document).on("click", ".pojo-a11y-toolbar-link", function (e) {
26251 console.log('click');
26252 $('.gt_options').hasClass('gt-open') ? $('.gt_options').removeClass('gt-open') : $('.gt_options').addClass('gt-open');
26253 });
26254 $(document).on("click", "#gt_float_wrapper, .gt_float_switcher, .gt-selected, .gt-current-lang", function (e) {
26255 console.log('click lang');
26256
26257 //$('.gt_options').hasClass('gt-open') ? $('.gt_options').removeClass('gt-open') : $('.gt_options').addClass('gt-open');
26258 });
26259 });
26260
26261 window.onclick = e => {
26262 console.log(e.target); // to get the element
26263 console.log(e.target.tagName); // to get the element tag name alone
26264 };
26249 26265
26250 exports.Alert = alert$1; 26266 exports.Alert = alert$1;
26251 exports.Button = button; 26267 exports.Button = button;
......
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.
...@@ -60,3 +60,23 @@ $('html, body, #page').animate({ ...@@ -60,3 +60,23 @@ $('html, body, #page').animate({
60 document.addEventListener( 'wpcf7mailsent', function( event ) { 60 document.addEventListener( 'wpcf7mailsent', function( event ) {
61 jQuery('.appArea.responsive').hide(); 61 jQuery('.appArea.responsive').hide();
62 }, true ); 62 }, true );
63
64
65 jQuery(document).ready(function($) {
66 $(document).on("click", ".pojo-a11y-toolbar-link", function(e){
67 console.log('click');
68
69 $('.gt_options').hasClass('gt-open') ? $('.gt_options').removeClass('gt-open') : $('.gt_options').addClass('gt-open');
70 });
71 $(document).on("click", "#gt_float_wrapper, .gt_float_switcher, .gt-selected, .gt-current-lang", function(e){
72 console.log('click lang');
73
74 //$('.gt_options').hasClass('gt-open') ? $('.gt_options').removeClass('gt-open') : $('.gt_options').addClass('gt-open');
75 });
76
77 });
78
79 window.onclick = e => {
80 console.log(e.target); // to get the element
81 console.log(e.target.tagName); // to get the element tag name alone
82 }
...\ No newline at end of file ...\ No newline at end of file
......
1 #gt_float_wrapper{ 1 #gt_float_wrapper{
2
3 z-index: 9995!important;
2 right: 0rem !important; 4 right: 0rem !important;
3 @media screen and (max-width: 62.5rem){ 5 @media screen and (max-width: 62.5rem){
4 top: 0rem !important; 6 top: 0rem !important;
...@@ -30,6 +32,10 @@ ...@@ -30,6 +32,10 @@
30 } 32 }
31 33
32 } 34 }
35 #gt_float_wrapper:has(.gt_arrow_rotate){
36 z-index: 9999!important;
37 background: #fff;
38 }
33 39
34 .gt_float_switcher .gt-selected{ 40 .gt_float_switcher .gt-selected{
35 background-color: transparent !important; 41 background-color: transparent !important;
......
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
82 position: fixed; 82 position: fixed;
83 width: 100%; 83 width: 100%;
84 background-color: #fff; 84 background-color: #fff;
85 z-index: 999; 85 z-index: 99;
86 top: 0rem; 86 top: 0rem;
87 } 87 }
88 88
......
...@@ -119,3 +119,15 @@ ...@@ -119,3 +119,15 @@
119 } 119 }
120 120
121 121
122
123 #pojo-a11y-toolbar{
124 z-index: 9995 !important;
125 }
126
127 #pojo-a11y-toolbar.pojo-a11y-toolbar-open{
128
129 width: 200px;
130 z-index: 9999!important;
131 background-color: #fff;
132
133 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
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.455 5 Version: 1.0.456
6 */ 6 */
7 7
......