36217e75 by Jeff Balicki

menu

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 37271b38
......@@ -14492,6 +14492,11 @@ h1 + p, .h1 + p {
height: 100vh;
}
}
@media only screen and (max-height: 575.98px) and (orientation: landscape) {
#main-nav .container {
overflow-y: scroll;
}
}
#main-nav .container .custom-logo-link {
width: 206px;
}
......
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(){
$num = get_post_meta(get_the_ID(), '_seq_num', true );
$cap = get_post_meta(get_the_ID(), '_field_7', true );
?>
<div class="modal fade" id="Modal_<?php echo $num;?>" tabindex="-1" role="dialog" data-bs-backdrop="static" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal fade" id="Modal_<?php echo $num;?>" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-body">
......
......@@ -25206,6 +25206,14 @@
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 + ')';
};
});
$$1(document).ready(function ($) {
$(document).mouseup(function (e) {
var container = $("#wrapper-navbar");
if (!container.is(e.target) && container.hasClass('show') && container.has(e.target).length === 0) {
container.removeClass('show');
}
});
});
exports.Alert = alert$1;
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() {
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 + ')';
};
});
jQuery( document ).ready(function($) {
$(document).mouseup(function(e){
var container = $("#wrapper-navbar");
if(!container.is(e.target) && container.hasClass('show') && container.has(e.target).length === 0){
container.removeClass('show');
}
});
});
......
......@@ -83,6 +83,9 @@
@media only screen and (max-width: 1260px) {
height: 100vh;
}
@media only screen and (max-height: 575.98px) and (orientation: landscape) {
overflow-y: scroll;
}
.custom-logo-link{
width: 206px;
}
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.2.0040
Version: 1.2.0041
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......