2026-06-02 12:38:01 +08:00
|
|
|
|
/* Profile page rules move here as they are retired from legacy-pages.css. */
|
2026-06-02 17:45:57 +08:00
|
|
|
|
|
2026-06-03 19:15:45 +08:00
|
|
|
|
/* ── 代表作滚动容器:固定3列,刚好显示9个(3行),超出可滚动,隐藏滚动条 ── */
|
|
|
|
|
|
.profile-page__works-scroll {
|
2026-06-05 16:08:47 +08:00
|
|
|
|
max-height: 390px; /* 3行卡片:3 × 120(min-height) + 2 × 10(gap) = 380px,留10px余量 */
|
2026-06-03 19:15:45 +08:00
|
|
|
|
overflow-y: auto;
|
2026-06-05 16:08:47 +08:00
|
|
|
|
scrollbar-width: none; /* Firefox */
|
|
|
|
|
|
-ms-overflow-style: none; /* IE/Edge */
|
2026-06-03 19:15:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.profile-page__works-scroll::-webkit-scrollbar {
|
2026-06-05 16:08:47 +08:00
|
|
|
|
display: none; /* Chrome/Safari/Edge */
|
2026-06-03 19:15:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.profile-page__works-scroll .profile-page__list-grid {
|
2026-06-05 16:08:47 +08:00
|
|
|
|
grid-template-columns: repeat(3, 1fr); /* 固定3列,刚好3×3=9个可见 */
|
2026-06-02 17:45:57 +08:00
|
|
|
|
}
|
2026-06-05 18:28:10 +08:00
|
|
|
|
|
|
|
|
|
|
/* Dashboard uses natural page scrolling instead of a nested works scroller. */
|
|
|
|
|
|
.profile-page--dashboard .profile-page__works-scroll {
|
|
|
|
|
|
max-height: none;
|
|
|
|
|
|
overflow: visible;
|
|
|
|
|
|
scrollbar-width: auto;
|
|
|
|
|
|
}
|