- Add placeholder node styles to editor.css matching other media nodes - Remove incorrect margins from individual placeholder components - Placeholders now properly aligned with 2.25rem horizontal spacing - Consistent with h1, h2, p text elements and YouTube embeds
630 lines
11 KiB
CSS
630 lines
11 KiB
CSS
/* Base TipTap Editor Styles with Light/Dark Theme Support */
|
|
|
|
/* Import Tippy.js animation styles */
|
|
@import 'tippy.js/animations/scale.css';
|
|
|
|
.tiptap :first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
/* Paragraph spacing */
|
|
.tiptap p {
|
|
margin-top: 0;
|
|
margin-bottom: 1rem;
|
|
line-height: 1.6;
|
|
padding-left: 2.25rem;
|
|
padding-right: 2.25rem;
|
|
}
|
|
|
|
.tiptap p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tiptap p {
|
|
padding-left: 2rem;
|
|
padding-right: 2rem;
|
|
}
|
|
}
|
|
|
|
/* For Placeholder */
|
|
.tiptap .is-empty::before {
|
|
pointer-events: none;
|
|
float: left;
|
|
height: 0;
|
|
color: var(--border-color-hover);
|
|
content: attr(data-placeholder);
|
|
}
|
|
|
|
/* Heading Styles */
|
|
.tiptap h1,
|
|
.tiptap h2,
|
|
.tiptap h3,
|
|
.tiptap h4,
|
|
.tiptap h5,
|
|
.tiptap h6 {
|
|
line-height: 1.2;
|
|
margin-top: 1.5rem;
|
|
margin-bottom: 0.75rem;
|
|
text-wrap: pretty;
|
|
padding-left: 2.25rem;
|
|
padding-right: 2.25rem;
|
|
}
|
|
|
|
.tiptap h1,
|
|
.tiptap h2 {
|
|
margin-top: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
/* Reduce top margin for headings that immediately follow other elements */
|
|
.tiptap p + h1,
|
|
.tiptap p + h2,
|
|
.tiptap p + h3,
|
|
.tiptap p + h4,
|
|
.tiptap p + h5,
|
|
.tiptap p + h6 {
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tiptap h1,
|
|
.tiptap h2,
|
|
.tiptap h3,
|
|
.tiptap h4,
|
|
.tiptap h5,
|
|
.tiptap h6 {
|
|
padding-left: 2rem;
|
|
padding-right: 2rem;
|
|
}
|
|
}
|
|
|
|
.tiptap h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.tiptap h2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.tiptap h3 {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.tiptap h4,
|
|
.tiptap h5,
|
|
.tiptap h6 {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
/* Blockquote Styles */
|
|
.tiptap blockquote {
|
|
border-left: 0.5rem solid var(--blockquote-border);
|
|
border-radius: 0.5rem;
|
|
background-color: var(--code-bg);
|
|
margin: 1rem 2.25rem;
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tiptap blockquote {
|
|
margin: 1rem 2rem;
|
|
}
|
|
}
|
|
|
|
.tiptap blockquote p {
|
|
margin: 0;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.tiptap blockquote p:not(:last-child) {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
/* Horizontal Rule */
|
|
.tiptap hr {
|
|
border: none;
|
|
border-top: 1px solid var(--border-color);
|
|
margin: 1rem 2.25rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tiptap hr {
|
|
margin: 1rem 2rem;
|
|
}
|
|
}
|
|
|
|
/* Inline Code */
|
|
.tiptap code:not(pre code) {
|
|
border-radius: 0.25rem;
|
|
color: var(--code-color);
|
|
background-color: var(--code-bg);
|
|
border: 0.5px solid var(--code-border) !important;
|
|
padding: 0.25rem;
|
|
font-family: 'JetBrains Mono', monospace, Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono';
|
|
}
|
|
|
|
/* List Styling */
|
|
.tiptap ul,
|
|
.tiptap ol {
|
|
margin-top: 0;
|
|
margin-bottom: 1rem;
|
|
margin-left: 2.25rem;
|
|
margin-right: 2.25rem;
|
|
padding-left: 1.5rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tiptap ul,
|
|
.tiptap ol {
|
|
margin-left: 2rem;
|
|
margin-right: 2rem;
|
|
}
|
|
}
|
|
|
|
.tiptap ul li,
|
|
.tiptap ol li {
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.tiptap ul li p,
|
|
.tiptap ol li p {
|
|
margin-top: 0;
|
|
margin-bottom: 0.25rem;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.tiptap ul li:last-child,
|
|
.tiptap ol li:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Task List Styling */
|
|
.tiptap ul[data-type='taskList'] {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.tiptap ul[data-type='taskList'] li {
|
|
align-items: flex-start;
|
|
display: flex;
|
|
}
|
|
|
|
.tiptap ul[data-type='taskList'] li > label {
|
|
margin-right: 0.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
user-select: none;
|
|
}
|
|
|
|
.tiptap ul[data-type='taskList'] li > div {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.tiptap ul[data-type='taskList'] input[type='checkbox'] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tiptap ul[data-type='taskList'] ul[data-type='taskList'] {
|
|
margin: 0;
|
|
}
|
|
|
|
ul[data-type='taskList'] li[data-checked='true'] div {
|
|
color: var(--task-completed-color);
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
input[type='checkbox'] {
|
|
position: relative;
|
|
top: 0.25rem;
|
|
margin: 0;
|
|
display: grid;
|
|
place-content: center;
|
|
cursor: pointer;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
/* Color Swatches */
|
|
.color {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.color::before {
|
|
margin-bottom: 0.15rem;
|
|
margin-right: 0.1rem;
|
|
display: inline-block;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
border-radius: 0.25rem;
|
|
border: 1px solid var(--border-color);
|
|
vertical-align: middle;
|
|
background-color: var(--color);
|
|
content: ' ';
|
|
}
|
|
|
|
/* Code Block Styling */
|
|
.tiptap pre {
|
|
margin: 0;
|
|
display: flex;
|
|
height: fit-content;
|
|
overflow: auto;
|
|
background-color: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
.tiptap pre code {
|
|
flex: 1;
|
|
border-radius: 0 !important;
|
|
background-color: transparent;
|
|
padding: 0;
|
|
color: inherit;
|
|
font-family: 'JetBrains Mono', monospace, Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono';
|
|
}
|
|
|
|
/* Drag Handle Styling */
|
|
.drag-handle {
|
|
position: fixed;
|
|
z-index: 50;
|
|
width: 1.25rem;
|
|
height: 1.25rem;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
opacity: 100;
|
|
transition-property: opacity, background-color;
|
|
transition-duration: 200ms;
|
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
color: var(--border-color-hover);
|
|
cursor: grab;
|
|
padding: 0.125rem;
|
|
border-radius: 4px; /* $corner-radius-sm */
|
|
}
|
|
|
|
.drag-handle svg {
|
|
width: 0.875rem;
|
|
height: 0.875rem;
|
|
}
|
|
|
|
/* Invisible hover zone to bridge the gap */
|
|
.drag-handle::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 100%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 16px; /* Slightly larger than the 12px gap */
|
|
height: 100%;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.drag-handle:hover {
|
|
opacity: 100 !important;
|
|
background-color: #e8e8e8; /* $grey-80 */
|
|
}
|
|
|
|
.drag-handle:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.drag-handle.hide {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.drag-handle.hide.menu-open {
|
|
opacity: 100;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.drag-handle {
|
|
display: none;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
/* Highlight Styles */
|
|
.tiptap mark {
|
|
font-style: normal !important;
|
|
padding: 0.125rem 0;
|
|
border-radius: 0.25rem;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.tiptap mark[data-color] {
|
|
background-color: var(--highlight-color);
|
|
color: inherit;
|
|
}
|
|
|
|
/* Math Equations (KaTeX) */
|
|
.katex:hover {
|
|
background-color: var(--code-bg);
|
|
}
|
|
|
|
.katex.result {
|
|
border-bottom: 1px dashed var(--highlight-border);
|
|
background-color: var(--highlight-color);
|
|
}
|
|
|
|
/* Table Styling */
|
|
.ProseMirror .tableWrapper {
|
|
margin: 0 2.25rem 1rem 2.25rem;
|
|
overflow: auto;
|
|
padding: 1rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.ProseMirror .tableWrapper {
|
|
margin: 0 2rem 1rem 2rem;
|
|
}
|
|
}
|
|
|
|
.ProseMirror table {
|
|
margin-top: 1rem;
|
|
margin-bottom: 1rem;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border-radius: 0.25rem;
|
|
border: 1px solid var(--table-border);
|
|
}
|
|
|
|
.ProseMirror table td,
|
|
.ProseMirror table th {
|
|
position: relative;
|
|
min-width: 100px;
|
|
border: 1px solid var(--table-border);
|
|
padding: 0.5rem;
|
|
text-align: left;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.ProseMirror table td:first-of-type:not(a),
|
|
.ProseMirror table th:first-of-type:not(a) {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.ProseMirror table td p,
|
|
.ProseMirror table th p {
|
|
margin: 0;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.ProseMirror table td p + p,
|
|
.ProseMirror table th p + p {
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
.ProseMirror table th {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ProseMirror table .column-resize-handle {
|
|
pointer-events: none;
|
|
position: absolute;
|
|
top: 0;
|
|
right: -0.25rem;
|
|
bottom: -2px;
|
|
display: flex;
|
|
width: 0.5rem;
|
|
}
|
|
|
|
.ProseMirror table .column-resize-handle::before {
|
|
content: '';
|
|
margin-left: 0.5rem;
|
|
height: 100%;
|
|
width: 1px;
|
|
background-color: var(--table-border);
|
|
}
|
|
|
|
.ProseMirror table .selectedCell {
|
|
border-style: double;
|
|
border-color: var(--table-border);
|
|
background-color: var(--table-bg-selected);
|
|
}
|
|
|
|
.ProseMirror table .grip-column,
|
|
.ProseMirror table .grip-row {
|
|
position: absolute;
|
|
z-index: 10;
|
|
display: flex;
|
|
cursor: pointer;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--table-bg-selected);
|
|
}
|
|
|
|
.ProseMirror table .grip-column {
|
|
top: -0.75rem;
|
|
left: 0;
|
|
margin-left: -1px;
|
|
height: 0.75rem;
|
|
width: calc(100% + 1px);
|
|
border-left: 1px solid var(--table-border);
|
|
}
|
|
|
|
.ProseMirror table .grip-column:hover::before,
|
|
.ProseMirror table .grip-column.selected::before {
|
|
content: '';
|
|
width: 0.625rem;
|
|
}
|
|
|
|
.ProseMirror table .grip-column:hover {
|
|
background-color: var(--table-bg-hover);
|
|
}
|
|
|
|
.ProseMirror table .grip-column:hover::before {
|
|
border-bottom: 2px dotted var(--border-color-hover);
|
|
}
|
|
|
|
.ProseMirror table .grip-column.first {
|
|
border-top-left-radius: 0.125rem;
|
|
border-color: transparent;
|
|
}
|
|
|
|
.ProseMirror table .grip-column.last {
|
|
border-top-right-radius: 0.125rem;
|
|
}
|
|
|
|
.ProseMirror table .grip-column.selected {
|
|
border-color: var(--table-border);
|
|
background-color: var(--table-bg-hover);
|
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.ProseMirror table .grip-column.selected::before {
|
|
border-bottom: 2px dotted var(--border-color-hover);
|
|
}
|
|
|
|
.ProseMirror table .grip-row {
|
|
left: -0.75rem;
|
|
top: 0;
|
|
margin-top: -1px;
|
|
height: calc(100% + 1px);
|
|
width: 0.75rem;
|
|
border-top: 1px solid var(--table-border);
|
|
}
|
|
|
|
.ProseMirror table .grip-row:hover::before,
|
|
.ProseMirror table .grip-row.selected::before {
|
|
content: '';
|
|
height: 0.625rem;
|
|
}
|
|
|
|
.ProseMirror table .grip-row:hover {
|
|
background-color: var(--table-bg-hover);
|
|
}
|
|
|
|
.ProseMirror table .grip-row:hover::before {
|
|
border-left: 2px dotted var(--border-color-hover);
|
|
}
|
|
|
|
.ProseMirror table .grip-row.first {
|
|
border-top-left-radius: 0.125rem;
|
|
border-color: transparent;
|
|
}
|
|
|
|
.ProseMirror table .grip-row.last {
|
|
border-bottom-left-radius: 0.125rem;
|
|
}
|
|
|
|
.ProseMirror table .grip-row.selected {
|
|
border-color: var(--table-border);
|
|
background-color: var(--table-bg-hover);
|
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.ProseMirror table .grip-row.selected::before {
|
|
border-left: 2px dotted var(--border-color-hover);
|
|
}
|
|
|
|
.tiptap .search-result {
|
|
background-color: var(--search-result-bg);
|
|
color: black;
|
|
}
|
|
|
|
.tiptap .search-result-current {
|
|
background-color: var(--search-result-current-bg);
|
|
color: black;
|
|
}
|
|
|
|
.code-wrapper {
|
|
background-color: var(--code-bg);
|
|
border-radius: 0.25rem;
|
|
padding: 1.5rem;
|
|
position: relative;
|
|
height: fit-content;
|
|
margin: 0 2.25rem 1rem 2.25rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.code-wrapper {
|
|
margin: 0 2rem 1rem 2rem;
|
|
}
|
|
}
|
|
|
|
.code-wrapper-tile {
|
|
opacity: 0;
|
|
width: 100%;
|
|
display: flex;
|
|
position: absolute;
|
|
top: 0;
|
|
padding: 0.25rem;
|
|
right: 0;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
transition: opacity 0.2s ease-in-out;
|
|
}
|
|
|
|
.code-wrapper:hover .code-wrapper-tile {
|
|
opacity: 1;
|
|
}
|
|
|
|
.tiptap iframe {
|
|
aspect-ratio: 16 / 9;
|
|
}
|
|
|
|
/* Content Embeds - Consistent spacing with text blocks */
|
|
.tiptap .node-urlEmbed,
|
|
.tiptap .node-iframe,
|
|
.tiptap .node-video,
|
|
.tiptap .node-image,
|
|
.tiptap .node-gallery,
|
|
.tiptap .node-audio,
|
|
.tiptap .node-geolocation,
|
|
.tiptap .node-audio-placeholder,
|
|
.tiptap .node-gallery-placeholder,
|
|
.tiptap .node-iframe-placeholder,
|
|
.tiptap .node-video-placeholder,
|
|
.tiptap .node-geolocation-placeholder,
|
|
.tiptap .node-image-placeholder,
|
|
.tiptap .node-urlEmbedPlaceholder {
|
|
margin-bottom: 1rem;
|
|
margin-left: 2.25rem;
|
|
margin-right: 2.25rem;
|
|
}
|
|
|
|
/* YouTube embeds within urlEmbed */
|
|
.tiptap .edra-youtube-embed-wrapper {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
/* URL embed cards */
|
|
.tiptap .edra-url-embed-wrapper {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
/* Remove double margins if wrapper already has margin */
|
|
.tiptap .edra-url-embed-wrapper + *,
|
|
.tiptap .edra-youtube-embed-wrapper + * {
|
|
margin-top: 0;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tiptap .node-urlEmbed,
|
|
.tiptap .node-iframe,
|
|
.tiptap .node-video,
|
|
.tiptap .node-image,
|
|
.tiptap .node-gallery,
|
|
.tiptap .node-audio,
|
|
.tiptap .node-geolocation,
|
|
.tiptap .node-audio-placeholder,
|
|
.tiptap .node-gallery-placeholder,
|
|
.tiptap .node-iframe-placeholder,
|
|
.tiptap .node-video-placeholder,
|
|
.tiptap .node-geolocation-placeholder,
|
|
.tiptap .node-image-placeholder,
|
|
.tiptap .node-urlEmbedPlaceholder {
|
|
margin-left: 2rem;
|
|
margin-right: 2rem;
|
|
}
|
|
}
|