@lvce-editor/main-area-worker 9.4.0 → 9.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4318,6 +4318,7 @@ const getEditorGroupCss = layout => {
|
|
|
4318
4318
|
}`;
|
|
4319
4319
|
});
|
|
4320
4320
|
};
|
|
4321
|
+
|
|
4321
4322
|
const getSashCss = layout => {
|
|
4322
4323
|
if (layout.groups.length <= 1) {
|
|
4323
4324
|
return [];
|
|
@@ -4336,6 +4337,7 @@ const getSashCss = layout => {
|
|
|
4336
4337
|
}
|
|
4337
4338
|
return rules;
|
|
4338
4339
|
};
|
|
4340
|
+
|
|
4339
4341
|
const getCss = layout => {
|
|
4340
4342
|
const rules = [`.MainArea {
|
|
4341
4343
|
}`, `.editor-groups-container {
|
|
@@ -4343,10 +4345,10 @@ const getCss = layout => {
|
|
|
4343
4345
|
}`, `.EditorGroup {
|
|
4344
4346
|
min-width: 250px;
|
|
4345
4347
|
width: var(--EditorGroupWidth, auto);
|
|
4346
|
-
height: var(--EditorGroupHeight, auto)
|
|
4347
|
-
}`, `.SashVertical {
|
|
4348
|
+
/*height: var(--EditorGroupHeight, auto);*/
|
|
4349
|
+
}`, `.MainArea .SashVertical {
|
|
4348
4350
|
left: var(--SashLeft);
|
|
4349
|
-
}`, `.SashHorizontal {
|
|
4351
|
+
}`, `.MainArea .SashHorizontal {
|
|
4350
4352
|
top: var(--SashTop);
|
|
4351
4353
|
}`];
|
|
4352
4354
|
if (layout) {
|