Style Read More section in WYSIWYG like link

pull/383/head
Matt Baer 4 years ago
parent 1abc9b643f
commit 706ae9cc77
  1. 10
      less/prose-editor.less
  2. 2
      prose/schema.js

@ -106,6 +106,9 @@ li.ProseMirror-selectednode:after {
.ProseMirror-menuitem {
margin-right: 3px;
display: inline-block;
div {
cursor: pointer;
}
}
.ProseMirror-menuseparator {
@ -404,6 +407,13 @@ textarea {
margin-bottom: 4px;
}
.editorreadmore {
color: @textLinkColor;
text-decoration: underline;
text-align: center;
width: 100%;
}
@media all and (min-width: 50em) {
#editor {
margin-left: 10%;

@ -12,7 +12,7 @@ export const writeFreelySchema = new Schema({
draggable: true,
toDOM: (node) => [
"div",
{ class: "editorreadmore", style: "width: 100%;text-align:center" },
{ class: "editorreadmore" },
"Read more...",
],
parseDOM: [{ tag: "div.editorreadmore" }],

Loading…
Cancel
Save