style(样式): 添加细滚动条样式类
- 新增 scrollbar-thin 样式类用于小区域滚动 - 优化滚动条视觉效果,宽度更细更美观
This commit is contained in:
parent
249362a6eb
commit
d4de4381f2
@ -194,6 +194,19 @@ body {
|
|||||||
background-color: var(--color-text-tertiary);
|
background-color: var(--color-text-tertiary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 更细的滚动条 - 用于小区域 */
|
||||||
|
.scrollbar-thin::-webkit-scrollbar {
|
||||||
|
width: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scrollbar-thin::-webkit-scrollbar-thumb {
|
||||||
|
background-color: rgba(0, 0, 0, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
|
||||||
|
background-color: rgba(0, 0, 0, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
/* ========================================
|
/* ========================================
|
||||||
动画
|
动画
|
||||||
======================================== */
|
======================================== */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user