Some checks are pending
E2E / Playwright e2e (push) Waiting to run
- Replaced suite page metadata with drive-specific metadata for document and drawing editors. - Introduced new `driveEditorPageMetadata` function to manage titles and favicons based on editor type. - Updated layout components for document and drawing editors to utilize the new metadata structure. - Enhanced document title handling in various editor components to reflect the current editing context. - Added new SVG icons for UltiDocs, UltiSheets, UltiSlides, and UltiDraw to improve visual consistency across editors. - Improved print styles and layout handling for better document rendering in print and PDF formats.
9 lines
462 B
TypeScript
9 lines
462 B
TypeScript
/** Shared UltiDocs logo paths (material-symbols:description). Used by chrome + favicon. */
|
|
export const DOCS_LOGO_BODY =
|
|
"M8 18h8v-2H8zm0-4h8v-2H8zm-2 8q-.825 0-1.412-.587T4 20V4q0-.825.588-1.412T6 2h8l6 6v12q0 .825-.587 1.413T18 22z"
|
|
export const DOCS_LOGO_FOLD = "M13 7h5l-5-5z"
|
|
export const DOCS_LOGO_LINE_1 = "M8 18h8v-2H8z"
|
|
export const DOCS_LOGO_LINE_2 = "M8 14h8v-2H8z"
|
|
export const DOCS_LOGO_FOLD_Y_OFFSET = 1
|
|
export const DOCS_LOGO_COLOR = "#4285F4"
|