Updating tests for the table

This commit is contained in:
Jonathan Bobel
2025-04-09 14:52:56 -04:00
parent b71a941634
commit 487866d81c
7 changed files with 78 additions and 358 deletions

View File

@@ -27,10 +27,15 @@
});
}
// Run once DOM is ready
// Auto-init on page load in browser
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initFullscreenTables);
} else {
initFullscreenTables();
}
// Expose it globally in test environments
if (typeof window !== 'undefined') {
window.initFullscreenTables = initFullscreenTables;
}
})();

View File

@@ -216,6 +216,7 @@ h2.recipient-list {
z-index: 10;
background: white;
text-align: center;
width: units(2);
&::before {
content: "";

View File

@@ -722,7 +722,6 @@ details form {
.placeholder,
.placeholder-conditional {
background-color: #face00;
border: 1px solid #face00;
border-radius: 7px;
}