1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-21 03:18:23 +00:00

Umind module develop (#3029)

* complete loading step

* update code struct

* add minimap

* add save btn

* add save handler

* get the data after modify

* optimized umind style

* add save method

* optimized code

* delete console

* update dependencies

* update conf

* delete unnecessary code

* delete umind create button
This commit is contained in:
杨顺强
2019-03-01 17:38:08 +08:00
committed by Daniel Pan
parent 54ea5d04fa
commit 55cb00cf86
18 changed files with 2354 additions and 35 deletions

View File

@@ -0,0 +1,71 @@
#wrapper {
width: 100%;
height: 100%;
display: flex;
overflow: hidden;
}
.umind-container {
display: flex;
flex: 1;
flex-direction: column;
}
.umind-container .umind-header {
padding: 8px;
border: 1px solid #E6E9ED;
}
.umind-container .umind-body {
display: flex;
flex: 1;
}
.toolbar-container {
display: flex;
}
.toolbar-container .custom-toolbar {
width: auto;
}
.toolbar-container .common-toolbar {
display: flex;
flex: 1;
}
.umind-body .umind-editor-content,
.umind-body .umind-editor-sidebar {
display: flex;
flex-direction: column;
}
.umind-editor-content .umind-editor {
display: flex;
flex: 1;
background-color: #eee;
}
.umind-editor-sidebar {
background: #FAFAFA;
}
.umind-editor-sidebar:first-child {
border-right: 1px solid #E6E9ED;
}
.umind-editor-sidebar:last-child {
border-left: 1px solid #E6E9ED;
}
.umind-editor-sidebar .detail-panel {
flex: 1;
display: flex;
background: #FAFAFA;
}
.detail-panel .node-detail {
flex: 1;
background: #FAFAFA;
}