- added spreadsheet form element;

This commit is contained in:
Vitalii Kiiko
2026-03-25 12:28:34 +01:00
parent d36f73a068
commit 61e03f304b
16 changed files with 382 additions and 11 deletions

View File

@@ -176,6 +176,19 @@
width: 40rem;
}
.formBuilder__elementSettings--wide {
width: 90%;
}
// Univer renders context menus / popups with position:fixed and z-index:1070,
// but PrimeReact Sidebar (modal type) sits at z-index ~1100, hiding them.
// Raise all Univer popup/floating layers above the sidebar.
.univer-popup,
.univer-z-\[1020\],
.univer-z-\[1080\] {
z-index: 9999 !important;
}
.formElementSettings {
display: flex;
flex-direction: column;