Added lcp-ui.js and changes to blocks

This commit is contained in:
Jeremy Rangel
2024-12-30 17:39:30 -08:00
parent b9e2660318
commit 4b78f9f571
18 changed files with 55007 additions and 107450 deletions

View File

@ -205,4 +205,36 @@ Version: 1.0
/* Optional: Remove the appearance in other browsers */
.lcp-dimension-value-control .lcp-number-control input[type="number"] {
appearance: none;
}
}
/* LCP UI */
/* LCP Accordions */
.lcp-accordion {
width: 100%;
}
.lcp-accordion-tab {
border: 1px solid #ccc;
margin-bottom: 5px;
}
.lcp-accordion-tab h3 {
background-color: #f1f1f1;
padding: 10px;
cursor: pointer;
margin: 0;
}
.lcp-accordion-content {
padding: 10px;
display: none; /* Initially hide the content */
background-color: #f9f9f9;
}
.lcp-accordion-tab.active .lcp-accordion-content {
display: block; /* Show the content when tab is active */
}