search and cleanup

This commit is contained in:
zyqunix 2025-04-18 20:37:24 +02:00
parent eeb54aa36a
commit f436edffe2
3 changed files with 4488 additions and 22265 deletions

File diff suppressed because it is too large Load diff

15
skin-ids/index.js Normal file
View file

@ -0,0 +1,15 @@
function filterSkins() {
const input = document.getElementById("searchInput").value.toLowerCase();
const rows = document.querySelectorAll("tbody tr");
rows.forEach(row => {
const name = row.querySelector("td span")?.textContent.toLowerCase() || "";
const id = row.querySelector("td code")?.textContent.toLowerCase() || "";
if (name.includes(input) || id.includes(input)) {
row.style.display = "";
} else {
row.style.display = "none";
}
});
}

1
skin-ids/style.css Normal file
View file

@ -0,0 +1 @@
@import url(/global.css);