Fetch upstream #5

Merged
OCram85 merged 20 commits from fetchUpstream into master 2021-08-02 17:02:35 +02:00
2 changed files with 8 additions and 1 deletions
Showing only changes of commit 30a757de47 - Show all commits

View File

@ -1067,6 +1067,8 @@ pre {
margin-top: 1.5rem;
color: #fff;
font-size: 1.5rem;
max-height: calc(100vh - 6.5rem);
overflow-y: auto;
}
#search-results-container a {
color: #fff;

View File

@ -121,13 +121,18 @@ var BeautifulJekyllJS = {
e.preventDefault();
$("#beautifuljekyll-search-overlay").show();
$("#nav-search-input").focus().select();
$("body").addClass("overflow-hidden");
});
$("#nav-search-exit").click(function(e) {
e.preventDefault();
$("#beautifuljekyll-search-overlay").hide();
$("body").removeClass("overflow-hidden");
});
$(document).on('keyup', function(e) {
if (e.key == "Escape") $("#beautifuljekyll-search-overlay").hide();
if (e.key == "Escape") {
$("#beautifuljekyll-search-overlay").hide();
$("body").removeClass("overflow-hidden");
}
});
}
};