Files
AFFiNE-Mirror/blocksuite/affine/blocks/block-list/src/styles.ts
2025-03-08 12:00:34 +08:00

65 lines
1.2 KiB
TypeScript

import { css } from 'lit';
export const listPrefix = css`
.affine-list-block__prefix {
display: flex;
color: var(--affine-blue-700);
font-size: var(--affine-font-sm);
user-select: none;
position: relative;
}
.affine-list-block__numbered {
min-width: 22px;
height: 24px;
margin-left: 2px;
}
.affine-list-block__todo-prefix {
display: flex;
align-items: center;
cursor: pointer;
width: 24px;
height: 24px;
color: var(--affine-icon-color);
}
.affine-list-block__todo-prefix.readonly {
cursor: default;
}
.affine-list-block__todo-prefix > svg {
width: 20px;
height: 20px;
}
`;
export const listBlockStyles = css`
affine-list {
display: block;
font-size: var(--affine-font-base);
}
.affine-list-block-container {
box-sizing: border-box;
border-radius: 4px;
position: relative;
}
.affine-list-block-container .affine-list-block-container {
margin-top: 0;
}
.affine-list-rich-text-wrapper {
position: relative;
display: flex;
}
.affine-list-rich-text-wrapper rich-text {
flex: 1;
}
.affine-list--checked {
color: var(--affine-text-secondary-color);
}
${listPrefix}
`;