import { css, html } from 'lit'; export const styles = css` .affine-embed-loom-block { box-sizing: border-box; display: flex; flex-direction: column; gap: 20px; padding: 12px; width: 100%; height: 100%; border-radius: 8px; border: 1px solid var(--affine-background-tertiary-color); background: var(--affine-background-primary-color); user-select: none; } .affine-embed-loom-video { flex-grow: 1; width: 100%; } .affine-embed-loom-video img, .affine-embed-loom-video object, .affine-embed-loom-video svg { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; } .affine-embed-loom-video-iframe-container { position: relative; height: 100%; } .affine-embed-loom-video-iframe-container > iframe { width: 100%; height: 100%; border-radius: 4px; } .affine-embed-loom-video-iframe-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .affine-embed-loom-video-iframe-overlay.hide { display: none; } .affine-embed-loom-content { display: flex; flex-direction: column; width: 100%; height: fit-content; } .affine-embed-loom-content-header { display: flex; flex-direction: row; gap: 8px; align-items: center; align-self: stretch; } .affine-embed-loom-content-title-icon { display: flex; width: 20px; height: 20px; justify-content: center; align-items: center; } .affine-embed-loom-content-title-icon img, .affine-embed-loom-content-title-icon object, .affine-embed-loom-content-title-icon svg { width: 20px; height: 20px; fill: var(--affine-background-primary-color); } .affine-embed-loom-content-title-text { flex: 1 0 0; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; word-break: break-word; overflow: hidden; text-overflow: ellipsis; color: var(--affine-text-primary-color); font-family: var(--affine-font-family); font-size: var(--affine-font-sm); font-style: normal; font-weight: 600; line-height: 22px; } .affine-embed-loom-content-description { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; flex: 1 0 0; align-self: stretch; word-break: break-word; white-space: normal; overflow: hidden; text-overflow: ellipsis; color: var(--affine-text-primary-color); font-family: var(--affine-font-family); font-size: var(--affine-font-xs); font-style: normal; font-weight: 400; line-height: 20px; } .affine-embed-loom-content-url { display: flex; align-items: center; justify-content: flex-start; gap: 4px; width: max-content; max-width: 100%; cursor: pointer; } .affine-embed-loom-content-url > span { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; word-break: break-all; white-space: normal; overflow: hidden; text-overflow: ellipsis; color: var(--affine-text-secondary-color); font-family: var(--affine-font-family); font-size: var(--affine-font-xs); font-style: normal; font-weight: 400; line-height: 20px; } .affine-embed-loom-content-url:hover > span { color: var(--affine-link-color); } .affine-embed-loom-content-url:hover .open-icon { fill: var(--affine-link-color); } .affine-embed-loom-content-url-icon { display: flex; align-items: center; justify-content: center; width: 12px; height: 12px; } .affine-embed-loom-content-url-icon .open-icon { height: 12px; width: 12px; fill: var(--affine-text-secondary-color); } .affine-embed-loom-block.loading { .affine-embed-loom-content-title-text { color: var(--affine-placeholder-color); } } .affine-embed-loom-block.selected { .affine-embed-loom-content-url > span { color: var(--affine-link-color); } .affine-embed-loom-content-url .open-icon { fill: var(--affine-link-color); } } `; export const LoomIcon = html` `;