style: qych 法案解读面板自定义细滚动条替代浏览器默认样式

5px宽/12%透明度/hover加深/圆角3px,兼顾可见性与低调

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
liulujian 2026-07-05 00:17:57 +08:00
parent 8a4986968d
commit aada2a8b2b

View File

@ -841,6 +841,24 @@ body {
background: @qych-policy-panel-bg;
border-radius: @qych-policy-card-radius;
box-sizing: border-box;
/* 自定义细滚动条 */
scrollbar-width: thin;
scrollbar-color: rgba(0, 0, 0, 0.12) transparent;
&::-webkit-scrollbar {
width: 5px;
}
&::-webkit-scrollbar-track {
background: transparent;
}
&::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.12);
border-radius: 3px;
}
&::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.22);
}
}
.content-item2 {