- Updated .env.example to include configuration for OnlyOffice Document Server. - Modified the workspace configuration to remove the drive-suite path. - Adjusted TypeScript environment imports for consistency. - Enhanced Next.js configuration to disable canvas in Webpack. - Updated package.json to include new dependencies for OnlyOffice and PDF.js. - Added global styles for OnlyOffice theme integration in the CSS. - Created new layout and page components for the Drive feature, including public sharing and editing functionalities. - Updated metadata handling across various layouts to reflect the new app structure.
16 lines
396 B
CSS
16 lines
396 B
CSS
/* Phase 4 — Google-adjacent OnlyOffice chrome overrides */
|
|
.ultidrive-editor-chrome {
|
|
background: var(--drive-toolbar);
|
|
font-family: var(--font-sans), "Roboto", system-ui, sans-serif;
|
|
}
|
|
|
|
/* Hide OnlyOffice branding when embedded (customization.layout also set server-side) */
|
|
[id^="ultidrive-editor"] {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
[id^="ultidrive-editor"] iframe {
|
|
border: none;
|
|
}
|