1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 10:26:17 +00:00

Umind update (#3064)

* modify umind implement method

* delete unnecessary code

* repair data loading bug
This commit is contained in:
杨顺强
2019-03-07 11:00:44 +08:00
committed by Daniel Pan
parent 38f3d4ee84
commit b839efe490
14 changed files with 194 additions and 626 deletions

View File

@@ -1,71 +0,0 @@
#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;
}