diff --git a/editors/editoria/src/Editoria.js b/editors/editoria/src/Editoria.js index 52c7c06355d8a252716fc4509c78034b045d0686..b6effa48a7d64bab2c3684df2afded090e34996a 100644 --- a/editors/editoria/src/Editoria.js +++ b/editors/editoria/src/Editoria.js @@ -51,7 +51,6 @@ const Editoria = () => ( layout={EditoriaLayout} user={user} /> - <div id="editors" /> </Fragment> ); diff --git a/editors/editoria/src/config/config.js b/editors/editoria/src/config/config.js index 64215ee856cb56a85e60794445d9be27145171f8..8e3b42561264abd944f345b3bcde533daa01b10c 100644 --- a/editors/editoria/src/config/config.js +++ b/editors/editoria/src/config/config.js @@ -33,14 +33,7 @@ export default { MenuService: [ { templateArea: "topBar", - toolGroups: [ - "Base", - { name: "Annotations", exclude: ["Strong"] }, - "Notes", - "Lists", - "Images", - "Tables" - ] + toolGroups: ["Base", "Annotations", "Notes", "Lists", "Images", "Tables"] }, { templateArea: "leftSideBar", diff --git a/wax-prosemirror-layouts/src/layouts/EditoriaLayout.js b/wax-prosemirror-layouts/src/layouts/EditoriaLayout.js index 8279146d6231820f7c473cb02ffe941a2bae92aa..bba95b426ea70e1cb97a7b2777ba0fbf9776ac9b 100644 --- a/wax-prosemirror-layouts/src/layouts/EditoriaLayout.js +++ b/wax-prosemirror-layouts/src/layouts/EditoriaLayout.js @@ -21,7 +21,48 @@ const LeftMenuSurfaceContainer = styled.div` height: 100%; width: 100%; .divider { - border-top: 1px dotted black; + &:before { + content: "Notes"; + position: relative; + bottom: 14px; + background: white; + color: #a3a3a3; + font-weight: 600; + letter-spacing: 0.15em; + } + &:after { + color: #a3a3a3; + content: ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . " + ". . . . . . . . . . . . . . . . . . . . "; + float: left; + font-weight: 400; + white-space: nowrap; + width: 0; + position: relative; + bottom: 14px; + } } `;