theme fix
BIN
resources/themes/default/assets/img/about-bg.jpeg
Normal file
After Width: | Height: | Size: 356 KiB |
Before Width: | Height: | Size: 2.4 MiB |
Before Width: | Height: | Size: 489 KiB |
BIN
resources/themes/default/assets/img/home-bg.jpeg
Normal file
After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 984 KiB |
Before Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 112 KiB |
0
resources/themes/default/css/bootstrap.min.css
vendored
Normal file
0
resources/themes/default/css/bootstrap/_media.css
Normal file
0
resources/themes/default/css/style.css
Normal file
0
resources/themes/default/images/bg_1.jpg
Normal file
0
resources/themes/default/images/logo.jpg
Normal file
0
resources/themes/default/js/bootstrap.min.js
vendored
Normal file
0
resources/themes/default/js/jquery.min.js
vendored
Normal file
30
resources/themes/default/js/main.js
Normal file
@ -0,0 +1,30 @@
|
||||
(function ($) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var fullHeight = function () {
|
||||
|
||||
$('.js-fullheight').css('height', $(window).height());
|
||||
$(window).resize(function () {
|
||||
$('.js-fullheight').css('height', $(window).height());
|
||||
});
|
||||
|
||||
};
|
||||
fullHeight();
|
||||
|
||||
$('#sidebarCollapse').on('click', function () {
|
||||
$('#sidebar').toggleClass('active');
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
|
||||
window.addEventListener("load", function () {
|
||||
let closeBtn = document.querySelectorAll(".closeAlertBtn");
|
||||
closeBtn.forEach((item) => {
|
||||
item.addEventListener("click", closeAlert);
|
||||
});
|
||||
});
|
||||
|
||||
function closeAlert() {
|
||||
this.parentNode.setAttribute("style", "display: none;")
|
||||
}
|