16:42 20/02/2024

This commit is contained in:
2024-02-20 16:12:12 +07:00
parent 07d9184608
commit c0338763a7
19 changed files with 4048 additions and 1 deletions

1102
assets/css/style-mb.css Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

1115
assets/css/style-mb.scss Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -947,6 +947,7 @@ table {
}
}
}
.breadcrumb-global {
margin: 20px 0;
color: rgba(85, 85, 85, 1);

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 452 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 529 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 KiB

18
assets/js/main-mb.js Normal file
View File

@@ -0,0 +1,18 @@
click_footer()
clickFillter()
function click_footer() {
$(".content-main-footer .item-footer .title").click(function () {
$(this).parents(".show-footer").toggleClass("active");
});
}
function clickFillter() {
$(".item-filter").each(function () {
var nutClick = $(this).find(".title-filter");
$(nutClick).click(function () {
$(this).parent().toggleClass("hidden");
})
})
}