BirchStreet download. Fixed Cin7 and backed up all the templates. Sandbox templates.

This commit is contained in:
Norm Rasmussen
2024-12-16 16:29:06 -05:00
parent 9a045e60dc
commit b8d085e12c
603 changed files with 13679 additions and 5939 deletions

View File

@ -0,0 +1,11 @@
// Create a <style> tag
const style = document.createElement('style');
style.textContent = `
.bqUfwS {
background-color: blue !important; /* Use !important to enforce the rule */
color: white !important;
}
`;
// Append the <style> tag to the document head
document.head.appendChild(style);