285 lines
6.3 KiB
TypeScript
285 lines
6.3 KiB
TypeScript
import { css, cssManager } from '@design.estate/dees-element';
|
|
|
|
export const wysiwygStyles = css`
|
|
:host {
|
|
display: block;
|
|
position: relative;
|
|
}
|
|
|
|
.wysiwyg-container {
|
|
background: ${cssManager.bdTheme('#ffffff', '#1a1a1a')};
|
|
border: 1px solid ${cssManager.bdTheme('#e0e0e0', '#333')};
|
|
border-radius: 8px;
|
|
min-height: 200px;
|
|
padding: 20px;
|
|
position: relative;
|
|
transition: all 0.2s ease;
|
|
color: ${cssManager.bdTheme('#000000', '#ffffff')};
|
|
}
|
|
|
|
.wysiwyg-container:hover {
|
|
border-color: ${cssManager.bdTheme('#d0d0d0', '#444')};
|
|
}
|
|
|
|
.wysiwyg-container:focus-within {
|
|
border-color: ${cssManager.bdTheme('#0066cc', '#4d94ff')};
|
|
box-shadow: 0 0 0 3px ${cssManager.bdTheme('rgba(0, 102, 204, 0.1)', 'rgba(77, 148, 255, 0.1)')};
|
|
}
|
|
|
|
.editor-content {
|
|
outline: none;
|
|
min-height: 160px;
|
|
}
|
|
|
|
.block {
|
|
margin-bottom: 12px;
|
|
position: relative;
|
|
transition: all 0.15s ease;
|
|
min-height: 1.6em;
|
|
color: ${cssManager.bdTheme('#000000', '#e0e0e0')};
|
|
}
|
|
|
|
.block:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.block.selected {
|
|
background: ${cssManager.bdTheme('rgba(0, 102, 204, 0.08)', 'rgba(77, 148, 255, 0.12)')};
|
|
margin-left: -12px;
|
|
margin-right: -12px;
|
|
padding: 8px 12px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.block[contenteditable] {
|
|
outline: none;
|
|
}
|
|
|
|
.block.paragraph {
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.block.paragraph:empty::before {
|
|
content: "Type '/' for commands...";
|
|
color: ${cssManager.bdTheme('#999', '#666')};
|
|
pointer-events: none;
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.block.heading-1 {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
line-height: 1.2;
|
|
margin-bottom: 16px;
|
|
color: ${cssManager.bdTheme('#000000', '#ffffff')};
|
|
}
|
|
|
|
.block.heading-1:empty::before {
|
|
content: "Heading 1";
|
|
color: ${cssManager.bdTheme('#999', '#666')};
|
|
pointer-events: none;
|
|
font-size: 32px;
|
|
line-height: 1.2;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.block.heading-2 {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
line-height: 1.3;
|
|
margin-bottom: 14px;
|
|
color: ${cssManager.bdTheme('#000000', '#ffffff')};
|
|
}
|
|
|
|
.block.heading-2:empty::before {
|
|
content: "Heading 2";
|
|
color: ${cssManager.bdTheme('#999', '#666')};
|
|
pointer-events: none;
|
|
font-size: 24px;
|
|
line-height: 1.3;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.block.heading-3 {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
line-height: 1.4;
|
|
margin-bottom: 12px;
|
|
color: ${cssManager.bdTheme('#000000', '#ffffff')};
|
|
}
|
|
|
|
.block.heading-3:empty::before {
|
|
content: "Heading 3";
|
|
color: ${cssManager.bdTheme('#999', '#666')};
|
|
pointer-events: none;
|
|
font-size: 20px;
|
|
line-height: 1.4;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.block.quote {
|
|
border-left: 3px solid ${cssManager.bdTheme('#0066cc', '#4d94ff')};
|
|
padding-left: 16px;
|
|
font-style: italic;
|
|
color: ${cssManager.bdTheme('#555', '#b0b0b0')};
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.block.quote:empty::before {
|
|
content: "Quote";
|
|
color: ${cssManager.bdTheme('#999', '#666')};
|
|
pointer-events: none;
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
}
|
|
|
|
.block.code {
|
|
background: ${cssManager.bdTheme('#f8f8f8', '#0d0d0d')};
|
|
border: 1px solid ${cssManager.bdTheme('#e0e0e0', '#2a2a2a')};
|
|
border-radius: 6px;
|
|
padding: 12px 16px;
|
|
font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
|
|
font-size: 14px;
|
|
white-space: pre-wrap;
|
|
color: ${cssManager.bdTheme('#d14', '#ff6b6b')};
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.block.code:empty::before {
|
|
content: "// Code block";
|
|
color: ${cssManager.bdTheme('#999', '#666')};
|
|
pointer-events: none;
|
|
font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.block.list {
|
|
padding-left: 24px;
|
|
}
|
|
|
|
.block.list ul,
|
|
.block.list ol {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-position: inside;
|
|
}
|
|
|
|
.block.list ul {
|
|
list-style: disc;
|
|
}
|
|
|
|
.block.list ol {
|
|
list-style: decimal;
|
|
}
|
|
|
|
.block.list li {
|
|
margin-bottom: 4px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.block.divider {
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.block.divider hr {
|
|
border: none;
|
|
border-top: 1px solid ${cssManager.bdTheme('#e0e0e0', '#333')};
|
|
margin: 0;
|
|
}
|
|
|
|
.slash-menu {
|
|
position: absolute;
|
|
background: ${cssManager.bdTheme('#ffffff', '#262626')};
|
|
border: 1px solid ${cssManager.bdTheme('#e0e0e0', '#404040')};
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
|
|
padding: 4px;
|
|
z-index: 1000;
|
|
min-width: 220px;
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.slash-menu-item {
|
|
padding: 10px 12px;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
border-radius: 4px;
|
|
color: ${cssManager.bdTheme('#000000', '#e0e0e0')};
|
|
font-size: 14px;
|
|
}
|
|
|
|
.slash-menu-item:hover,
|
|
.slash-menu-item.selected {
|
|
background: ${cssManager.bdTheme('#f0f0f0', '#333333')};
|
|
color: ${cssManager.bdTheme('#000000', '#ffffff')};
|
|
}
|
|
|
|
.slash-menu-item .icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 16px;
|
|
color: ${cssManager.bdTheme('#666', '#999')};
|
|
font-weight: 600;
|
|
}
|
|
|
|
.slash-menu-item:hover .icon,
|
|
.slash-menu-item.selected .icon {
|
|
color: ${cssManager.bdTheme('#0066cc', '#4d94ff')};
|
|
}
|
|
|
|
.toolbar {
|
|
position: absolute;
|
|
top: -40px;
|
|
left: 0;
|
|
background: ${cssManager.bdTheme('#ffffff', '#262626')};
|
|
border: 1px solid ${cssManager.bdTheme('#e0e0e0', '#404040')};
|
|
border-radius: 6px;
|
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
|
|
padding: 4px;
|
|
display: none;
|
|
gap: 4px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.toolbar.visible {
|
|
display: flex;
|
|
}
|
|
|
|
.toolbar-button {
|
|
width: 32px;
|
|
height: 32px;
|
|
border: none;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
transition: all 0.15s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: ${cssManager.bdTheme('#000000', '#e0e0e0')};
|
|
}
|
|
|
|
.toolbar-button:hover {
|
|
background: ${cssManager.bdTheme('#f0f0f0', '#333333')};
|
|
color: ${cssManager.bdTheme('#0066cc', '#4d94ff')};
|
|
}
|
|
`; |