Fixes various issues with page functionality, adds better menus for adding/deleting pages, changes slugs to PascalCase.
31 lines
No EOL
572 B
SCSS
31 lines
No EOL
572 B
SCSS
.page-editor-body {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.page-editor-tree-pane {
|
|
.ant-tree-node-content-wrapper {
|
|
display: flex;
|
|
}
|
|
|
|
.ant-tree-title {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.page-editor-tree-title {
|
|
display: block;
|
|
width: 100% !important;
|
|
}
|
|
|
|
// Reveal the row's ellipsis action only while hovering that row.
|
|
.page-editor-tree-action {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.ant-tree-node-content-wrapper:hover .page-editor-tree-action {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
|
|
.page-editor-markdown-pane {
|
|
padding: 0 16px;
|
|
} |