feat: implement custom CSS generator, improve code editor support, and add media picker and HTML tag management tools

This commit is contained in:
2026-08-01 18:34:51 +07:00
parent 2a8c6bfc39
commit 1ee67e6a46
29 changed files with 1807 additions and 4083 deletions
@@ -0,0 +1,11 @@
document.addEventListener('DOMContentLoaded', function () {
var cards = document.querySelectorAll('.sis-hover-card-grid .row > [class*=\"col-\"]');
if (cards.length > 0) {
cards.forEach(function (card) {
card.addEventListener('click', function () {
cards.forEach(function (c) { c.classList.remove('active'); });
card.classList.add('active');
});
});
}
});