朋友圈优化卡片消息类

This commit is contained in:
xuncha
2026-02-19 16:51:32 +08:00
parent 25325e80ee
commit ba07d47496
2 changed files with 244 additions and 3 deletions

View File

@@ -704,6 +704,84 @@
word-break: break-word;
}
.post-link-card {
width: min(460px, 100%);
display: flex;
align-items: center;
gap: 12px;
padding: 10px;
margin-bottom: 14px;
background: var(--bg-tertiary);
border: 1px solid var(--border-color);
border-radius: 12px;
cursor: pointer;
text-align: left;
transition: all 0.2s ease;
&:hover {
border-color: rgba(var(--accent-color-rgb), 0.35);
background: rgba(var(--accent-color-rgb), 0.08);
transform: translateY(-1px);
}
.link-thumb {
width: 88px;
min-width: 88px;
height: 66px;
border-radius: 8px;
overflow: hidden;
background: var(--bg-secondary);
border: 1px solid var(--border-color);
img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.link-thumb-fallback {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-tertiary);
}
}
.link-meta {
flex: 1;
min-width: 0;
.link-title {
font-size: 14px;
line-height: 1.4;
font-weight: 600;
color: var(--text-primary);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
word-break: break-word;
}
.link-url {
margin-top: 6px;
font-size: 12px;
color: var(--text-tertiary);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.link-arrow {
color: var(--text-tertiary);
flex-shrink: 0;
}
}
.post-media-grid {
display: grid;
gap: 6px;
@@ -1271,4 +1349,4 @@
transform: rotate(360deg);
}
}
}
}