Browse Source

Style Read More section in WYSIWYG like link

pull/383/head
Matt Baer 3 years ago
parent
commit
706ae9cc77
2 changed files with 11 additions and 1 deletions
  1. +10
    -0
      less/prose-editor.less
  2. +1
    -1
      prose/schema.js

+ 10
- 0
less/prose-editor.less View File

@@ -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%;


+ 1
- 1
prose/schema.js View File

@@ -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