2026-01-06 22:57:00 -03:00
|
|
|
/* =============================================================================
|
2026-01-11 09:56:44 -03:00
|
|
|
GB DOCS - Modern Document Editor Styles
|
2026-01-12 00:03:48 -03:00
|
|
|
Google Docs-like interface with AI chat panel
|
2026-01-06 22:57:00 -03:00
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
VARIABLES & BASE
|
|
|
|
|
============================================================================= */
|
2026-01-06 22:57:00 -03:00
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
:root {
|
|
|
|
|
--docs-page-width: 816px;
|
|
|
|
|
--docs-page-min-height: 1056px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
* {
|
2026-01-06 22:57:00 -03:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
2026-01-12 00:03:48 -03:00
|
|
|
MAIN LAYOUT - Full height, light background
|
2026-01-12 00:11:28 -03:00
|
|
|
Use body[data-app="docs"] for reliable targeting
|
2026-01-11 09:56:44 -03:00
|
|
|
============================================================================= */
|
2026-01-06 22:57:00 -03:00
|
|
|
|
2026-01-12 00:11:28 -03:00
|
|
|
/* When docs app is active - force light theme */
|
|
|
|
|
body[data-app="docs"] {
|
|
|
|
|
overflow: hidden !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body[data-app="docs"] #main-content {
|
|
|
|
|
background: #f8f9fa !important;
|
|
|
|
|
background-color: #f8f9fa !important;
|
|
|
|
|
overflow: hidden !important;
|
|
|
|
|
height: calc(100vh - 40px) !important;
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.docs-app {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-01-11 23:59:24 -03:00
|
|
|
height: 100%;
|
2026-01-12 00:11:28 -03:00
|
|
|
width: 100%;
|
|
|
|
|
background: #f8f9fa;
|
2026-01-12 00:03:48 -03:00
|
|
|
color: #202124;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
2026-01-06 22:57:00 -03:00
|
|
|
overflow: hidden;
|
2026-01-11 23:59:24 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
2026-01-12 00:03:48 -03:00
|
|
|
TOOLBAR - Document name left, tools center, share right
|
2026-01-11 09:56:44 -03:00
|
|
|
============================================================================= */
|
2026-01-06 22:57:00 -03:00
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.docs-toolbar {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-12 00:03:48 -03:00
|
|
|
padding: 0 12px;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
border-bottom: 1px solid #dadce0;
|
|
|
|
|
height: 48px;
|
|
|
|
|
min-height: 48px;
|
2026-01-11 09:56:44 -03:00
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-left {
|
2026-01-12 00:03:48 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-center {
|
2026-01-12 00:03:48 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-06 22:57:00 -03:00
|
|
|
flex: 1;
|
2026-01-12 00:03:48 -03:00
|
|
|
gap: 4px;
|
2026-01-11 09:56:44 -03:00
|
|
|
overflow-x: auto;
|
2026-01-12 00:03:48 -03:00
|
|
|
padding: 4px 8px;
|
|
|
|
|
margin: 0 8px;
|
2026-01-11 09:56:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-center::-webkit-scrollbar {
|
|
|
|
|
height: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-center::-webkit-scrollbar-thumb {
|
2026-01-12 00:03:48 -03:00
|
|
|
background: #dadce0;
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: 2px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-right {
|
2026-01-12 00:03:48 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
gap: 8px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-group {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-12 00:03:48 -03:00
|
|
|
gap: 2px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-divider {
|
|
|
|
|
width: 1px;
|
2026-01-12 00:03:48 -03:00
|
|
|
height: 20px;
|
|
|
|
|
background: #dadce0;
|
|
|
|
|
margin: 0 6px;
|
2026-01-11 09:56:44 -03:00
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.doc-name-input {
|
2026-01-06 22:57:00 -03:00
|
|
|
border: 1px solid transparent;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: transparent;
|
2026-01-12 00:03:48 -03:00
|
|
|
font-size: 18px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #202124;
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
width: 200px;
|
|
|
|
|
max-width: 200px;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: all 0.2s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.doc-name-input:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.doc-name-input:focus {
|
|
|
|
|
outline: none;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-accent);
|
|
|
|
|
background: var(--docs-surface);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
BUTTONS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.btn-icon {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
border: none;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: transparent;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-secondary);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
2026-01-06 22:57:00 -03:00
|
|
|
cursor: pointer;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-icon:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
|
|
|
|
color: var(--docs-text);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-icon.active {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-accent);
|
2026-01-06 22:57:00 -03:00
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-icon svg {
|
2026-01-11 09:56:44 -03:00
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.btn-icon strong,
|
|
|
|
|
.btn-icon em,
|
|
|
|
|
.btn-icon u,
|
|
|
|
|
.btn-icon s {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
gap: 6px;
|
2026-01-06 22:57:00 -03:00
|
|
|
padding: 8px 16px;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-accent);
|
2026-01-06 22:57:00 -03:00
|
|
|
color: white;
|
|
|
|
|
border: none;
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
cursor: pointer;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
white-space: nowrap;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-accent);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.btn-secondary {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 6px;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 8px 16px;
|
|
|
|
|
background: transparent;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
|
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 14px;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-weight: 500;
|
|
|
|
|
cursor: pointer;
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-secondary:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
2026-01-11 09:56:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
|
|
|
|
TOOLBAR SELECTS & COLORS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.toolbar-select {
|
|
|
|
|
padding: 6px 8px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-surface);
|
|
|
|
|
color: var(--docs-text);
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 13px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: border-color 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toolbar-select:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-text-muted);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.toolbar-select:focus {
|
|
|
|
|
outline: none;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-accent);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.heading-select {
|
|
|
|
|
width: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.font-family {
|
|
|
|
|
width: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.font-size {
|
|
|
|
|
width: 55px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-btn {
|
2026-01-06 22:57:00 -03:00
|
|
|
position: relative;
|
2026-01-11 09:56:44 -03:00
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-letter {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-indicator {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 4px;
|
|
|
|
|
left: 6px;
|
|
|
|
|
right: 6px;
|
|
|
|
|
height: 3px;
|
|
|
|
|
background: #000000;
|
|
|
|
|
border-radius: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bg-indicator {
|
|
|
|
|
background: #ffff00;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-input {
|
|
|
|
|
position: absolute;
|
2026-01-11 09:56:44 -03:00
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
COLLABORATORS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.collaborators {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: -8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.collaborator-avatar {
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
border-radius: 50%;
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 2px solid var(--docs-surface);
|
2026-01-11 09:56:44 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: white;
|
|
|
|
|
margin-left: -8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.collaborator-avatar:first-child {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
2026-01-12 00:03:48 -03:00
|
|
|
MAIN CONTENT AREA - Canvas left, Chat panel right (SIDE BY SIDE)
|
2026-01-11 09:56:44 -03:00
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.docs-main {
|
|
|
|
|
display: flex;
|
2026-01-11 23:59:24 -03:00
|
|
|
flex-direction: row;
|
2026-01-12 00:11:28 -03:00
|
|
|
flex: 1;
|
2026-01-11 09:56:44 -03:00
|
|
|
overflow: hidden;
|
2026-01-12 00:11:28 -03:00
|
|
|
background: #f8f9fa;
|
2026-01-11 23:59:24 -03:00
|
|
|
min-height: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
DOCUMENT CANVAS - A4 PAGE
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.docs-canvas {
|
2026-01-12 00:11:28 -03:00
|
|
|
flex: 1;
|
2026-01-06 22:57:00 -03:00
|
|
|
overflow-y: auto;
|
2026-01-12 00:03:48 -03:00
|
|
|
overflow-x: auto;
|
|
|
|
|
padding: 20px;
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2026-01-11 23:59:24 -03:00
|
|
|
align-items: flex-start;
|
2026-01-12 00:11:28 -03:00
|
|
|
background: #f8f9fa;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-page {
|
2026-01-12 00:03:48 -03:00
|
|
|
width: 816px;
|
|
|
|
|
min-width: 816px;
|
|
|
|
|
min-height: 1056px;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
padding: 72px 72px;
|
|
|
|
|
margin-bottom: 24px;
|
2026-01-11 23:59:24 -03:00
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-content {
|
2026-01-12 00:03:48 -03:00
|
|
|
min-height: 800px;
|
2026-01-06 22:57:00 -03:00
|
|
|
outline: none;
|
2026-01-12 00:03:48 -03:00
|
|
|
font-family: "Arial", sans-serif;
|
|
|
|
|
font-size: 11pt;
|
|
|
|
|
line-height: 1.15;
|
|
|
|
|
color: #202124;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: transparent;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-content:empty::before {
|
2026-01-06 22:57:00 -03:00
|
|
|
content: attr(data-placeholder);
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-muted);
|
2026-01-11 09:56:44 -03:00
|
|
|
pointer-events: none;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-content:focus {
|
2026-01-06 22:57:00 -03:00
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* Editor content styles */
|
2026-01-06 22:57:00 -03:00
|
|
|
.editor-content h1 {
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 24pt;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-weight: 700;
|
2026-01-11 09:56:44 -03:00
|
|
|
margin: 24pt 0 12pt 0;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content h2 {
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 18pt;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-weight: 600;
|
2026-01-11 09:56:44 -03:00
|
|
|
margin: 20pt 0 10pt 0;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content h3 {
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 14pt;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-weight: 600;
|
2026-01-11 09:56:44 -03:00
|
|
|
margin: 16pt 0 8pt 0;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content p {
|
2026-01-11 09:56:44 -03:00
|
|
|
margin: 0 0 12pt 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content ul,
|
|
|
|
|
.editor-content ol {
|
2026-01-11 09:56:44 -03:00
|
|
|
margin: 0 0 12pt 0;
|
|
|
|
|
padding-left: 24pt;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content li {
|
2026-01-11 09:56:44 -03:00
|
|
|
margin: 4pt 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content blockquote {
|
2026-01-11 09:56:44 -03:00
|
|
|
margin: 12pt 0;
|
|
|
|
|
padding: 8pt 16pt;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-left: 4px solid var(--docs-accent);
|
|
|
|
|
background: var(--docs-bg);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-content pre {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 12pt;
|
2026-01-06 22:57:00 -03:00
|
|
|
border-radius: 4px;
|
2026-01-11 09:56:44 -03:00
|
|
|
overflow-x: auto;
|
|
|
|
|
margin: 12pt 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-content code {
|
|
|
|
|
font-family: "Courier New", monospace;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 2px 6px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
font-size: 11pt;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content pre code {
|
|
|
|
|
background: transparent;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content a {
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-accent);
|
2026-01-06 22:57:00 -03:00
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-content a:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-accent);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
height: auto;
|
2026-01-11 09:56:44 -03:00
|
|
|
display: block;
|
|
|
|
|
margin: 12pt auto;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: collapse;
|
2026-01-11 09:56:44 -03:00
|
|
|
margin: 12pt 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content th,
|
|
|
|
|
.editor-content td {
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 8pt 12pt;
|
2026-01-06 22:57:00 -03:00
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content th {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-content hr {
|
|
|
|
|
border: none;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-top: 1px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
margin: 24pt 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
STATUS BAR
|
|
|
|
|
============================================================================= */
|
2026-01-06 22:57:00 -03:00
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.docs-status-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 4px 16px;
|
2026-01-12 00:03:48 -03:00
|
|
|
background: #ffffff;
|
|
|
|
|
border-top: 1px solid #dadce0;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 12px;
|
2026-01-12 00:03:48 -03:00
|
|
|
color: #5f6368;
|
|
|
|
|
height: 24px;
|
|
|
|
|
min-height: 24px;
|
2026-01-11 09:56:44 -03:00
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.status-left,
|
|
|
|
|
.status-center,
|
|
|
|
|
.status-right {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.status-divider {
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-border);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.zoom-control {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
gap: 8px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.btn-zoom {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 1px solid var(--docs-border);
|
|
|
|
|
background: var(--docs-surface);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 14px;
|
2026-01-11 09:56:44 -03:00
|
|
|
font-weight: 600;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-secondary);
|
2026-01-11 09:56:44 -03:00
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.15s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.btn-zoom:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
|
|
|
|
color: var(--docs-text);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
2026-01-12 00:11:28 -03:00
|
|
|
CHAT PANEL - RIGHT SIDE
|
2026-01-11 09:56:44 -03:00
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.chat-panel {
|
2026-01-12 00:03:48 -03:00
|
|
|
width: 280px;
|
|
|
|
|
flex: 0 0 280px;
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-01-12 00:03:48 -03:00
|
|
|
background: #ffffff;
|
|
|
|
|
border-left: 1px solid #e0e0e0;
|
|
|
|
|
overflow: hidden;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-panel.collapsed {
|
2026-01-12 00:03:48 -03:00
|
|
|
display: none;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-header {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 12px 16px;
|
2026-01-12 00:03:48 -03:00
|
|
|
border-bottom: 1px solid #dadce0;
|
|
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-avatar {
|
2026-01-12 00:03:48 -03:00
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: 50%;
|
2026-01-12 00:03:48 -03:00
|
|
|
background: linear-gradient(135deg, #1a73e8, #8e44ad);
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
2026-01-11 09:56:44 -03:00
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: white;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-title h3 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
2026-01-12 00:03:48 -03:00
|
|
|
color: #202124;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-status {
|
|
|
|
|
font-size: 12px;
|
2026-01-12 00:03:48 -03:00
|
|
|
color: #5f6368;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-close {
|
2026-01-12 00:03:48 -03:00
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
2026-01-11 09:56:44 -03:00
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
2026-01-12 00:03:48 -03:00
|
|
|
color: #5f6368;
|
|
|
|
|
border-radius: 4px;
|
2026-01-11 09:56:44 -03:00
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-close:hover {
|
2026-01-12 00:03:48 -03:00
|
|
|
background: #f1f3f4;
|
|
|
|
|
color: #202124;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-messages {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 12px;
|
2026-01-11 23:59:24 -03:00
|
|
|
min-height: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-message {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
2026-01-11 09:56:44 -03:00
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 4px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-message.user {
|
|
|
|
|
align-items: flex-end;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-message.assistant {
|
|
|
|
|
align-items: flex-start;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.message-bubble {
|
|
|
|
|
max-width: 90%;
|
|
|
|
|
padding: 10px 14px;
|
|
|
|
|
border-radius: 12px;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 13px;
|
2026-01-11 09:56:44 -03:00
|
|
|
line-height: 1.5;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-message.user .message-bubble {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-accent);
|
2026-01-11 09:56:44 -03:00
|
|
|
color: white;
|
|
|
|
|
border-bottom-right-radius: 4px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-message.assistant .message-bubble {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
|
|
|
|
color: var(--docs-text);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-bottom-left-radius: 4px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.message-bubble p {
|
|
|
|
|
margin: 0 0 8px 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.message-bubble p:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-bubble ul {
|
|
|
|
|
margin: 8px 0 0 0;
|
|
|
|
|
padding-left: 20px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.message-bubble li {
|
|
|
|
|
margin: 4px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-suggestions {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
2026-01-11 09:56:44 -03:00
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
padding: 8px 16px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-top: 1px solid var(--docs-border);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.suggestion-btn {
|
|
|
|
|
padding: 6px 12px;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
|
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: 16px;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 12px;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-secondary);
|
2026-01-11 09:56:44 -03:00
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
white-space: nowrap;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.suggestion-btn:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-surface-hover);
|
|
|
|
|
color: var(--docs-text);
|
|
|
|
|
border-color: var(--docs-accent);
|
2026-01-11 09:56:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-input-container {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
2026-01-11 09:56:44 -03:00
|
|
|
align-items: center;
|
2026-01-06 22:57:00 -03:00
|
|
|
gap: 8px;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 12px 16px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-top: 1px solid var(--docs-border);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-input {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 10px 14px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: 20px;
|
|
|
|
|
font-size: 13px;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-surface);
|
|
|
|
|
color: var(--docs-text);
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: border-color 0.15s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-input:focus {
|
|
|
|
|
outline: none;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-accent);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-input::placeholder {
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-muted);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-send {
|
|
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
border: none;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-accent);
|
2026-01-11 09:56:44 -03:00
|
|
|
color: white;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
cursor: pointer;
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
justify-content: center;
|
|
|
|
|
transition: background 0.15s ease;
|
|
|
|
|
flex-shrink: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-send:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-accent);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-toggle {
|
|
|
|
|
position: relative;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-toggle.has-notification::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 4px;
|
|
|
|
|
right: 4px;
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
background: #ea4335;
|
|
|
|
|
border-radius: 50%;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
MODALS
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
.modal {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
z-index: 1000;
|
2026-01-11 09:56:44 -03:00
|
|
|
opacity: 1;
|
|
|
|
|
transition: opacity 0.2s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal.hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-content {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-surface);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-lg, 12px);
|
|
|
|
|
width: 90%;
|
|
|
|
|
max-width: 480px;
|
|
|
|
|
max-height: 90vh;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-content.modal-small {
|
|
|
|
|
max-width: 360px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-content.modal-large {
|
|
|
|
|
max-width: 600px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-01-11 09:56:44 -03:00
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 16px 20px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-bottom: 1px solid var(--docs-border);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-header h3 {
|
|
|
|
|
margin: 0;
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-close {
|
2026-01-11 09:56:44 -03:00
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
2026-01-06 22:57:00 -03:00
|
|
|
border: none;
|
2026-01-11 09:56:44 -03:00
|
|
|
background: transparent;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-muted);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
2026-01-06 22:57:00 -03:00
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 20px;
|
2026-01-11 09:56:44 -03:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
transition: all 0.15s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-close:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
|
|
|
|
color: var(--docs-text);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.modal-body {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
2026-01-06 22:57:00 -03:00
|
|
|
gap: 12px;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 16px 20px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-top: 1px solid var(--docs-border);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* Form elements in modals */
|
|
|
|
|
.form-group {
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group label {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 500;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
2026-01-11 09:56:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group input,
|
|
|
|
|
.form-group textarea,
|
|
|
|
|
.form-group select {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 10px 12px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 14px;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-surface);
|
|
|
|
|
color: var(--docs-text);
|
2026-01-11 09:56:44 -03:00
|
|
|
transition: border-color 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group input:focus,
|
|
|
|
|
.form-group textarea:focus,
|
|
|
|
|
.form-group select:focus {
|
|
|
|
|
outline: none;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-accent);
|
2026-01-11 09:56:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-row .form-group {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Share Modal */
|
|
|
|
|
.share-input-group {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
2026-01-11 09:56:44 -03:00
|
|
|
margin-bottom: 16px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.share-input-group input,
|
|
|
|
|
.share-input-group select {
|
|
|
|
|
padding: 10px 12px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 14px;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-surface);
|
|
|
|
|
color: var(--docs-text);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.share-input-group input {
|
|
|
|
|
flex: 1;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.share-input-group input:focus,
|
|
|
|
|
.share-input-group select:focus {
|
|
|
|
|
outline: none;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-accent);
|
2026-01-11 09:56:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.share-link-section {
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
padding-top: 20px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-top: 1px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.share-link-section h4 {
|
|
|
|
|
margin: 0 0 12px 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.share-link-group {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.share-link-group input {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 10px 12px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 13px;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
|
|
|
|
color: var(--docs-text-secondary);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* Export Modal */
|
|
|
|
|
.export-options {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
gap: 12px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.export-option {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 20px 16px;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
|
|
|
|
border: 2px solid var(--docs-border);
|
2026-01-11 09:56:44 -03:00
|
|
|
border-radius: var(--sentient-radius-md, 8px);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.15s ease;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.export-option:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-accent);
|
2026-01-11 09:56:44 -03:00
|
|
|
background: rgba(66, 133, 244, 0.1);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.export-icon {
|
2026-01-11 23:59:24 -03:00
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: var(--docs-accent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.export-icon svg {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.export-label {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 500;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
RESPONSIVE
|
|
|
|
|
============================================================================= */
|
2026-01-06 22:57:00 -03:00
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
@media (max-width: 1200px) {
|
|
|
|
|
.docs-canvas {
|
|
|
|
|
padding: 24px 16px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-page {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: var(--docs-page-width);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
2026-01-11 09:56:44 -03:00
|
|
|
}
|
2026-01-06 22:57:00 -03:00
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
@media (max-width: 1024px) {
|
|
|
|
|
.chat-panel {
|
2026-01-06 22:57:00 -03:00
|
|
|
position: fixed;
|
2026-01-12 00:03:48 -03:00
|
|
|
top: 100px;
|
2026-01-11 09:56:44 -03:00
|
|
|
right: 0;
|
2026-01-12 00:03:48 -03:00
|
|
|
bottom: 24px;
|
|
|
|
|
width: 300px;
|
|
|
|
|
min-width: 300px;
|
|
|
|
|
max-width: 300px;
|
2026-01-11 09:56:44 -03:00
|
|
|
z-index: 100;
|
2026-01-12 00:03:48 -03:00
|
|
|
box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
|
2026-01-11 23:59:24 -03:00
|
|
|
height: auto;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-panel.collapsed {
|
2026-01-06 22:57:00 -03:00
|
|
|
transform: translateX(100%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2026-01-11 09:56:44 -03:00
|
|
|
.toolbar-center {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.doc-name-input {
|
2026-01-12 00:03:48 -03:00
|
|
|
max-width: 120px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.btn-primary span {
|
2026-01-06 22:57:00 -03:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-panel {
|
|
|
|
|
width: 100%;
|
2026-01-11 23:59:24 -03:00
|
|
|
min-width: 100%;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-panel.collapsed {
|
|
|
|
|
transform: translateX(100%);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.docs-canvas {
|
2026-01-12 00:03:48 -03:00
|
|
|
padding: 12px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-page {
|
2026-01-12 00:03:48 -03:00
|
|
|
width: 100%;
|
|
|
|
|
min-width: auto;
|
|
|
|
|
padding: 24px;
|
2026-01-06 22:57:00 -03:00
|
|
|
min-height: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.export-options {
|
2026-01-11 09:56:44 -03:00
|
|
|
grid-template-columns: repeat(2, 1fr);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
2026-01-11 09:56:44 -03:00
|
|
|
.docs-toolbar {
|
|
|
|
|
padding: 6px 10px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.toolbar-right {
|
|
|
|
|
gap: 6px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.btn-primary {
|
|
|
|
|
padding: 8px 12px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-page {
|
|
|
|
|
padding: 32px 24px;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
PRINT
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
2026-01-06 22:57:00 -03:00
|
|
|
@media print {
|
2026-01-11 09:56:44 -03:00
|
|
|
.docs-toolbar,
|
2026-01-06 22:57:00 -03:00
|
|
|
.docs-status-bar,
|
2026-01-11 09:56:44 -03:00
|
|
|
.chat-panel,
|
2026-01-06 22:57:00 -03:00
|
|
|
.modal {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.docs-app {
|
2026-01-06 22:57:00 -03:00
|
|
|
height: auto;
|
|
|
|
|
background: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.docs-main {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.docs-canvas {
|
2026-01-06 22:57:00 -03:00
|
|
|
padding: 0;
|
|
|
|
|
background: white;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-page {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: none;
|
|
|
|
|
box-shadow: none;
|
2026-01-11 09:56:44 -03:00
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-content {
|
2026-01-11 09:56:44 -03:00
|
|
|
font-size: 12pt;
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
SELECTION HIGHLIGHT
|
|
|
|
|
============================================================================= */
|
2026-01-06 22:57:00 -03:00
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-content ::selection {
|
|
|
|
|
background: rgba(66, 133, 244, 0.3);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
|
|
|
|
|
2026-01-11 12:01:59 -03:00
|
|
|
/* =============================================================================
|
|
|
|
|
FIND & REPLACE MODAL
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.find-replace-group {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.find-replace-group label {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 500;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-secondary);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.find-replace-group input {
|
|
|
|
|
padding: 10px 12px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 12:01:59 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 14px;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-surface);
|
|
|
|
|
color: var(--docs-text);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.find-replace-group input:focus {
|
|
|
|
|
outline: none;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-accent);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.find-replace-options {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.checkbox-label {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
font-size: 13px;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
2026-01-11 12:01:59 -03:00
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.checkbox-label input[type="checkbox"] {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
2026-01-11 23:59:24 -03:00
|
|
|
accent-color: var(--docs-accent);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.find-results {
|
|
|
|
|
padding: 10px 12px;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-bg);
|
2026-01-11 12:01:59 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 13px;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-secondary);
|
2026-01-11 12:01:59 -03:00
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.find-highlight {
|
|
|
|
|
background: #ffeb3b;
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.find-highlight.current {
|
|
|
|
|
background: #ff9800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
|
|
|
|
PRINT PREVIEW MODAL
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.modal-fullscreen {
|
|
|
|
|
width: 95vw;
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
height: 90vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-fullscreen .modal-header {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal-fullscreen .modal-body {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-toolbar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
flex: 1;
|
|
|
|
|
margin: 0 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-toolbar select {
|
|
|
|
|
padding: 6px 10px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 12:01:59 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 13px;
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-surface);
|
|
|
|
|
color: var(--docs-text);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-toolbar .checkbox-label {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-preview-body {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
background: var(--sentient-bg-tertiary, #e0e0e0);
|
|
|
|
|
overflow: auto;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-preview-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-page {
|
|
|
|
|
background: white;
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
|
|
|
padding: 48px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-page.portrait {
|
|
|
|
|
width: 8.5in;
|
|
|
|
|
min-height: 11in;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-page.landscape {
|
|
|
|
|
width: 11in;
|
|
|
|
|
min-height: 8.5in;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-header,
|
|
|
|
|
.print-footer {
|
|
|
|
|
font-size: 10pt;
|
|
|
|
|
color: #666;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-header {
|
|
|
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-footer {
|
|
|
|
|
border-top: 1px solid #e0e0e0;
|
|
|
|
|
margin-top: auto;
|
|
|
|
|
padding-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.print-content {
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 12pt;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
|
|
|
|
PAGE BREAK
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.page-break {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 2px;
|
|
|
|
|
margin: 24px 0;
|
|
|
|
|
background: linear-gradient(
|
|
|
|
|
90deg,
|
|
|
|
|
transparent 0%,
|
2026-01-11 23:59:24 -03:00
|
|
|
var(--docs-border) 10%,
|
|
|
|
|
var(--docs-border) 90%,
|
2026-01-11 12:01:59 -03:00
|
|
|
transparent 100%
|
|
|
|
|
);
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-break::before {
|
|
|
|
|
content: "Page Break";
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 50%;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
2026-01-11 23:59:24 -03:00
|
|
|
background: var(--docs-surface);
|
2026-01-11 12:01:59 -03:00
|
|
|
padding: 2px 12px;
|
|
|
|
|
font-size: 10px;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-muted);
|
2026-01-11 12:01:59 -03:00
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media print {
|
|
|
|
|
.page-break {
|
|
|
|
|
display: block;
|
|
|
|
|
page-break-after: always;
|
|
|
|
|
height: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-break::before {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* =============================================================================
|
2026-01-12 00:03:48 -03:00
|
|
|
HEADER & FOOTER - Hidden by default, no blue bar
|
2026-01-11 12:01:59 -03:00
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.editor-header,
|
|
|
|
|
.editor-footer {
|
2026-01-12 00:03:48 -03:00
|
|
|
display: none; /* Hidden by default - show only when content added */
|
|
|
|
|
min-height: 32px;
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
color: #9aa0a6;
|
|
|
|
|
border: none;
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-header:not(:empty),
|
|
|
|
|
.editor-footer:not(:empty) {
|
|
|
|
|
display: block;
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-header {
|
2026-01-12 00:03:48 -03:00
|
|
|
border-bottom: 1px dashed #e0e0e0;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
background: transparent !important;
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-footer {
|
2026-01-11 23:59:24 -03:00
|
|
|
border-top: 1px dashed var(--docs-border);
|
2026-01-11 12:01:59 -03:00
|
|
|
margin-top: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-header:hover,
|
|
|
|
|
.editor-footer:hover {
|
|
|
|
|
background: rgba(66, 133, 244, 0.02);
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-border);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-header:focus,
|
|
|
|
|
.editor-footer:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
background: rgba(66, 133, 244, 0.05);
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-accent);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-header:empty::before,
|
|
|
|
|
.editor-footer:empty::before {
|
|
|
|
|
content: attr(data-placeholder);
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-muted);
|
2026-01-11 12:01:59 -03:00
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-header:focus:empty::before,
|
|
|
|
|
.editor-footer:focus:empty::before {
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-secondary);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Header/Footer Modal */
|
|
|
|
|
.hf-tabs {
|
|
|
|
|
display: flex;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-bottom: 1px solid var(--docs-border);
|
2026-01-11 12:01:59 -03:00
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-tab {
|
|
|
|
|
padding: 10px 16px;
|
|
|
|
|
background: none;
|
|
|
|
|
border: none;
|
|
|
|
|
border-bottom: 2px solid transparent;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 500;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-secondary);
|
2026-01-11 12:01:59 -03:00
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-tab:hover {
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-tab.active {
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-accent);
|
|
|
|
|
border-bottom-color: var(--docs-accent);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-tab-content {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-tab-content.active {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-editor {
|
|
|
|
|
min-height: 80px;
|
|
|
|
|
padding: 12px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border: 1px solid var(--docs-border);
|
2026-01-11 12:01:59 -03:00
|
|
|
border-radius: var(--sentient-radius-sm, 4px);
|
|
|
|
|
font-size: 13px;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text);
|
|
|
|
|
background: var(--docs-surface);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-editor:focus {
|
|
|
|
|
outline: none;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-color: var(--docs-accent);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-editor:empty::before {
|
|
|
|
|
content: attr(data-placeholder);
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-muted);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-options {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin: 16px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-insert-options {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
padding-top: 16px;
|
2026-01-11 23:59:24 -03:00
|
|
|
border-top: 1px solid var(--docs-border);
|
2026-01-11 12:01:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-insert-options label {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 500;
|
2026-01-11 23:59:24 -03:00
|
|
|
color: var(--docs-text-secondary);
|
2026-01-11 12:01:59 -03:00
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hf-insert-btns {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-sm {
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media print {
|
|
|
|
|
.editor-header,
|
|
|
|
|
.editor-footer {
|
|
|
|
|
border: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.editor-header:empty,
|
|
|
|
|
.editor-footer:empty {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-11 09:56:44 -03:00
|
|
|
.editor-content ::-moz-selection {
|
|
|
|
|
background: rgba(66, 133, 244, 0.3);
|
2026-01-06 22:57:00 -03:00
|
|
|
}
|
2026-01-11 09:56:44 -03:00
|
|
|
|
|
|
|
|
/* =============================================================================
|
|
|
|
|
FOCUS MODE
|
|
|
|
|
============================================================================= */
|
|
|
|
|
|
|
|
|
|
.
|