This commit is contained in:
mgabdev
2020-04-01 23:17:21 -04:00
parent 1a33759e19
commit 80d41b8d94
50 changed files with 1771 additions and 610 deletions

View File

@@ -248,6 +248,10 @@ body {
display: inline-block;
}
.cursorText {
cursor: text;
}
.cursorPointer {
cursor: pointer
}
@@ -472,6 +476,10 @@ body {
min-height: 50vh;
}
.heightMin50PX {
min-height: 50px;
}
.height100VH {
height: 100vh;
}
@@ -935,6 +943,11 @@ body {
padding-bottom: 2px;
}
.px2 {
padding-left: 2px;
padding-right: 2px;
}
.pb15 {
padding-bottom: 15px;
}
@@ -1016,4 +1029,27 @@ body {
.visibilityHidden {
visibility: hidden;
}
/**
* Rich Text Editor
*/
.RTE :global(.RichEditor-hidePlaceholder .public-DraftEditorPlaceholder-root) {
display: none;
}
.RTE :global(.RichEditor-editor .RichEditor-blockquote) {
border-left: 5px solid #eee;
color: #666;
font-family: 'Hoefler Text', 'Georgia', serif;
font-style: italic;
margin: 16px 0;
padding: 10px 20px;
}
.RTE :global(.RichEditor-editor .public-DraftStyleDefault-pre) {
background-color: rgba(0, 0, 0, 0.05);
font-family: 'Inconsolata', 'Menlo', 'Consolas', monospace;
font-size: 16px;
padding: 20px;
}