import { type EditorHost, ShadowlessElement } from '@blocksuite/block-std'; import { WithDisposable } from '@blocksuite/global/utils'; import { baseTheme } from '@toeverything/theme'; import { css, html, unsafeCSS } from 'lit'; import { property } from 'lit/decorators.js'; const styles = css` frame-panel { display: block; width: 100%; height: 100%; } .frame-panel-container { background-color: var(--affine-background-primary-color); box-sizing: border-box; display: flex; flex-direction: column; align-items: stretch; height: 100%; font-family: ${unsafeCSS(baseTheme.fontSansFamily)}; padding: 8px; } .frame-panel-body { padding-top: 12px; flex-grow: 1; width: 100%; overflow: auto; overflow-x: hidden; scrollbar-width: thin; /* For Firefox */ scrollbar-color: transparent transparent; /* For Firefox */ } .frame-panel-body::-webkit-scrollbar { width: 4px; } .frame-panel-body::-webkit-scrollbar-thumb { border-radius: 2px; } .frame-panel-body:hover::-webkit-scrollbar-thumb { background-color: var(--affine-black-30); } .frame-panel-body::-webkit-scrollbar-track { background-color: transparent; } .frame-panel-body::-webkit-scrollbar-corner { display: none; } `; export const AFFINE_FRAME_PANEL = 'affine-frame-panel'; export class FramePanel extends WithDisposable(ShadowlessElement) { static override styles = styles; override render() { return html`