Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
vue-flow-editor
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2023-12-04 13:36:41 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ec809372fc0c46ba975d9314f14faf86e524e329
ec809372
1 parent
715c8dab
详情弹框高度优化
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
src/editor/vue-flow-editor.scss
src/editor/vue-flow-editor.tsx
src/editor/vue-flow-editor.scss
View file @
ec80937
...
...
@@ -216,7 +216,7 @@ $transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
.vue-flow-editor-model-body
{
background-color
:
white
;
position
:
absolute
;
top
:
0
;
top
:
57px
;
bottom
:
0
;
right
:
0
;
display
:
flex
;
...
...
src/editor/vue-flow-editor.tsx
View file @
ec80937
...
...
@@ -151,9 +151,9 @@ export default {
<transition name="vue-flow-editor-transition">
<div class="vue-flow-editor-model" v-show={editorState.showModel}>
<div class="vue-flow-editor-model-body" style={modelBodyStyle.value}>
<div class="vue-flow-editor-model-head" style={styles.value.toolbar}>
{/*
<div class="vue-flow-editor-model-head" style={styles.value.toolbar}>
<i class="el-icon-close" onClick={provideContext.closeModel}/>
</div>
</div>
*/}
<div class="vue-flow-editor-model-content">
{!!context.slots.model && context.slots.model()}
</div>
...
...
Please
register
or
login
to post a comment