36217e75 by Jeff Balicki

menu

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 37271b38
...@@ -14492,6 +14492,11 @@ h1 + p, .h1 + p { ...@@ -14492,6 +14492,11 @@ h1 + p, .h1 + p {
14492 height: 100vh; 14492 height: 100vh;
14493 } 14493 }
14494 } 14494 }
14495 @media only screen and (max-height: 575.98px) and (orientation: landscape) {
14496 #main-nav .container {
14497 overflow-y: scroll;
14498 }
14499 }
14495 #main-nav .container .custom-logo-link { 14500 #main-nav .container .custom-logo-link {
14496 width: 206px; 14501 width: 206px;
14497 } 14502 }
......
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.
...@@ -50,7 +50,7 @@ function contest_slider(){ ...@@ -50,7 +50,7 @@ function contest_slider(){
50 $num = get_post_meta(get_the_ID(), '_seq_num', true ); 50 $num = get_post_meta(get_the_ID(), '_seq_num', true );
51 $cap = get_post_meta(get_the_ID(), '_field_7', true ); 51 $cap = get_post_meta(get_the_ID(), '_field_7', true );
52 ?> 52 ?>
53 <div class="modal fade" id="Modal_<?php echo $num;?>" tabindex="-1" role="dialog" data-bs-backdrop="static" aria-labelledby="exampleModalLabel" aria-hidden="true"> 53 <div class="modal fade" id="Modal_<?php echo $num;?>" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
54 <div class="modal-dialog modal-dialog-centered modal-lg" role="document"> 54 <div class="modal-dialog modal-dialog-centered modal-lg" role="document">
55 <div class="modal-content"> 55 <div class="modal-content">
56 <div class="modal-body"> 56 <div class="modal-body">
......
...@@ -25206,6 +25206,14 @@ ...@@ -25206,6 +25206,14 @@
25206 c2.classList.add('image-loaded'), c2.style.backgroundImage = 'linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 91%, rgba(0, 0, 0, 0) 100%), url(' + b2 + ')'; 25206 c2.classList.add('image-loaded'), c2.style.backgroundImage = 'linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 91%, rgba(0, 0, 0, 0) 100%), url(' + b2 + ')';
25207 }; 25207 };
25208 }); 25208 });
25209 $$1(document).ready(function ($) {
25210 $(document).mouseup(function (e) {
25211 var container = $("#wrapper-navbar");
25212 if (!container.is(e.target) && container.hasClass('show') && container.has(e.target).length === 0) {
25213 container.removeClass('show');
25214 }
25215 });
25216 });
25209 25217
25210 exports.Alert = alert$1; 25218 exports.Alert = alert$1;
25211 exports.Button = button; 25219 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.
...@@ -38,3 +38,13 @@ document.addEventListener("DOMContentLoaded", function() { ...@@ -38,3 +38,13 @@ document.addEventListener("DOMContentLoaded", function() {
38 c2.style.backgroundImage = 'linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 91%, rgba(0, 0, 0, 0) 100%), url(' + b2 + ')'; 38 c2.style.backgroundImage = 'linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 91%, rgba(0, 0, 0, 0) 100%), url(' + b2 + ')';
39 }; 39 };
40 }); 40 });
41
42 jQuery( document ).ready(function($) {
43 $(document).mouseup(function(e){
44 var container = $("#wrapper-navbar");
45 if(!container.is(e.target) && container.hasClass('show') && container.has(e.target).length === 0){
46 container.removeClass('show');
47 }
48 });
49 });
50
......
...@@ -83,6 +83,9 @@ ...@@ -83,6 +83,9 @@
83 @media only screen and (max-width: 1260px) { 83 @media only screen and (max-width: 1260px) {
84 height: 100vh; 84 height: 100vh;
85 } 85 }
86 @media only screen and (max-height: 575.98px) and (orientation: landscape) {
87 overflow-y: scroll;
88 }
86 .custom-logo-link{ 89 .custom-logo-link{
87 width: 206px; 90 width: 206px;
88 } 91 }
......
...@@ -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.2.0040 8 Version: 1.2.0041
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
......