mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-10 13:38:49 +08:00
60 lines
1.1 KiB
TypeScript
60 lines
1.1 KiB
TypeScript
import { css } from 'lit';
|
|
|
|
import { DRAG_HANDLE_CONTAINER_WIDTH } from './config.js';
|
|
|
|
export const styles = css`
|
|
.affine-drag-handle-widget {
|
|
display: flex;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
contain: size layout;
|
|
}
|
|
|
|
.affine-drag-handle-container {
|
|
top: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
display: flex;
|
|
justify-content: center;
|
|
width: ${DRAG_HANDLE_CONTAINER_WIDTH}px;
|
|
min-height: 12px;
|
|
pointer-events: auto;
|
|
user-select: none;
|
|
box-sizing: border-box;
|
|
}
|
|
.affine-drag-handle-container:hover {
|
|
cursor: grab;
|
|
}
|
|
|
|
.affine-drag-handle-grabber {
|
|
width: 4px;
|
|
height: 100%;
|
|
border-radius: 1px;
|
|
background: var(--affine-placeholder-color);
|
|
transition: width 0.25s ease;
|
|
}
|
|
|
|
@media print {
|
|
.affine-drag-handle-widget {
|
|
display: none;
|
|
}
|
|
}
|
|
.affine-drag-hover-rect {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
border-radius: 6px;
|
|
background: var(--affine-hover-color);
|
|
pointer-events: none;
|
|
z-index: 2;
|
|
animation: expand 0.25s forwards;
|
|
}
|
|
@keyframes expand {
|
|
0% {
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
}
|
|
`;
|