mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-22 00:37:05 +08:00
fixes https://github.com/toeverything/AFFiNE/issues/12972 border: `#eee` -> `#f3f3f3` background: `#fff` -> `#fff` (no-op) This change is based on [@fundon 's PR from 2 month ago](https://github.com/toeverything/AFFiNE/pull/11763/files#diff-cc768d5886dd743d8a7ad97df05added2710c0487d281f2b33b02ab1a9c78e4c) which I assume has the most up-to-date design I am also curious to know the current state of CSSVarV2 function. Should it replace all previous usage of css variables? I can do a find-replace globally (not just embed blocks) if that's important enough. <!-- https://github.com/toeverything/design/blob/main/packages/theme/src/v2/variables.ts#L296 -->
283 lines
6.0 KiB
TypeScript
283 lines
6.0 KiB
TypeScript
import { unsafeCSSVar, unsafeCSSVarV2 } from '@blocksuite/affine-shared/theme';
|
|
import { baseTheme } from '@toeverything/theme';
|
|
import { css, unsafeCSS } from 'lit';
|
|
|
|
export const styles = css`
|
|
bookmark-card {
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.affine-bookmark-card {
|
|
container: affine-bookmark-card / inline-size;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
width: 100%;
|
|
|
|
border-radius: 8px;
|
|
border: 1px solid ${unsafeCSSVarV2('layer/background/tertiary')};
|
|
|
|
background: ${unsafeCSSVarV2('layer/background/primary')};
|
|
user-select: none;
|
|
}
|
|
|
|
.affine-bookmark-content {
|
|
width: calc(100% - 204px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
align-self: stretch;
|
|
gap: 4px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.affine-bookmark-content-title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 8px;
|
|
align-items: center;
|
|
|
|
align-self: stretch;
|
|
}
|
|
|
|
.affine-bookmark-content-title-icon {
|
|
display: flex;
|
|
width: 16px;
|
|
height: 16px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.affine-bookmark-content-title-icon img,
|
|
.affine-bookmark-content-title-icon object,
|
|
.affine-bookmark-content-title-icon svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
fill: var(--affine-background-primary-color);
|
|
}
|
|
|
|
.affine-bookmark-content-title-text {
|
|
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-bookmark-content-description {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
|
|
flex-grow: 1;
|
|
|
|
white-space: normal;
|
|
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-xs);
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.affine-bookmark-content-url {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 4px;
|
|
width: max-content;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.affine-bookmark-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: ${unsafeCSS(baseTheme.fontSansFamily)};
|
|
font-size: var(--affine-font-xs);
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
}
|
|
.affine-bookmark-content-url:hover > span {
|
|
color: var(--affine-link-color);
|
|
}
|
|
.affine-bookmark-content-url:hover {
|
|
fill: var(--affine-link-color);
|
|
}
|
|
|
|
.affine-bookmark-content-url-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 12px;
|
|
height: 20px;
|
|
}
|
|
.affine-bookmark-content-url-icon {
|
|
height: 12px;
|
|
width: 12px;
|
|
color: ${unsafeCSSVar('iconSecondary')};
|
|
}
|
|
|
|
.affine-bookmark-banner {
|
|
margin: 12px 12px 0px 0px;
|
|
width: 204px;
|
|
max-width: 100%;
|
|
height: 102px;
|
|
}
|
|
|
|
.affine-bookmark-banner img,
|
|
.affine-bookmark-banner object,
|
|
.affine-bookmark-banner svg {
|
|
width: 204px;
|
|
max-width: 100%;
|
|
height: 102px;
|
|
object-fit: cover;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.affine-bookmark-card.comment-highlighted {
|
|
outline: 2px solid ${unsafeCSSVarV2('block/comment/highlightUnderline')};
|
|
}
|
|
|
|
.affine-bookmark-card.loading {
|
|
.affine-bookmark-content-title-text {
|
|
color: var(--affine-placeholder-color);
|
|
}
|
|
}
|
|
|
|
.affine-bookmark-card.error {
|
|
.affine-bookmark-content-description {
|
|
color: var(--affine-placeholder-color);
|
|
}
|
|
}
|
|
|
|
.affine-bookmark-card.selected {
|
|
.affine-bookmark-content-url > span {
|
|
color: var(--affine-link-color);
|
|
}
|
|
.affine-bookmark-content-url .affine-bookmark-content-url-icon {
|
|
color: var(--affine-link-color);
|
|
}
|
|
}
|
|
|
|
.affine-bookmark-card.list {
|
|
.affine-bookmark-content {
|
|
width: 100%;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.affine-bookmark-content-title {
|
|
width: calc(100% - 204px);
|
|
}
|
|
|
|
.affine-bookmark-content-url {
|
|
width: 204px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.affine-bookmark-content-description {
|
|
display: none;
|
|
}
|
|
|
|
.affine-bookmark-banner {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.affine-bookmark-card.vertical {
|
|
flex-direction: column-reverse;
|
|
height: 100%;
|
|
|
|
.affine-bookmark-content {
|
|
width: 100%;
|
|
}
|
|
|
|
.affine-bookmark-content-description {
|
|
-webkit-line-clamp: 6;
|
|
max-height: 120px;
|
|
}
|
|
|
|
.affine-bookmark-content-url-wrapper {
|
|
max-width: fit-content;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
flex-grow: 1;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.affine-bookmark-banner {
|
|
width: 340px;
|
|
height: 170px;
|
|
margin-left: 12px;
|
|
}
|
|
|
|
.affine-bookmark-banner img,
|
|
.affine-bookmark-banner object,
|
|
.affine-bookmark-banner svg {
|
|
width: 340px;
|
|
height: 170px;
|
|
}
|
|
}
|
|
|
|
.affine-bookmark-card.cube {
|
|
.affine-bookmark-content {
|
|
width: 100%;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.affine-bookmark-content-title {
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.affine-bookmark-content-title-text {
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
.affine-bookmark-content-description {
|
|
display: none;
|
|
}
|
|
|
|
.affine-bookmark-banner {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@container affine-bookmark-card (width < 375px) {
|
|
.affine-bookmark-content {
|
|
width: 100%;
|
|
}
|
|
.affine-bookmark-card:not(.edgeless) .affine-bookmark-banner {
|
|
display: none;
|
|
}
|
|
}
|
|
`;
|