mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-04-20 12:28:08 +00:00
fix: 调整保存成功弹出框位置
This commit is contained in:
parent
56f242fee9
commit
5198dae71c
@ -112,3 +112,13 @@ html.engine-preview-mode {
|
|||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ve-popups .ve-message {
|
||||||
|
right: 290px;
|
||||||
|
|
||||||
|
.ve-message-content {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
line-height: 22px;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -36,8 +36,8 @@ export default class LeftFloatPane extends Component<{ area: Area<any, Panel> }>
|
|||||||
.contentWindow.document.documentElement.contains(target)) {
|
.contentWindow.document.documentElement.contains(target)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// 防止点击 popup / dialog 等触发失焦
|
// 点击非编辑区域的 popup / dialog 等,不触发失焦
|
||||||
if (!document.querySelector('.lc-workbench-center')?.contains(target)) {
|
if (!document.querySelector('.lc-workbench')?.contains(target)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
const docks = area.current?.getAssocDocks();
|
const docks = area.current?.getAssocDocks();
|
||||||
|
|||||||
@ -294,7 +294,7 @@ export class Skeleton {
|
|||||||
let { area } = parsedConfig;
|
let { area } = parsedConfig;
|
||||||
if (!area) {
|
if (!area) {
|
||||||
if (parsedConfig.type === 'Panel') {
|
if (parsedConfig.type === 'Panel') {
|
||||||
area = 'leftFloatArea'
|
area = 'leftFloatArea';
|
||||||
} else if (parsedConfig.type === 'Widget') {
|
} else if (parsedConfig.type === 'Widget') {
|
||||||
area = 'mainArea';
|
area = 'mainArea';
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user