Added lcp-ui.js and changes to blocks
This commit is contained in:
34
style.css
34
style.css
@ -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 */
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user