pre / static /css /scrollbars.css
yangtb24's picture
Upload 37 files
bbb6398 verified
/* 滚动条样式
* 定制网站所有滚动条外观,提升用户界面一致性
*/
/* 主滚动条 - 适配Tailwind主题色 */
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-track {
background-color: #f8fafc; /* gray-50 背景色 */
border-radius: 8px;
}
::-webkit-scrollbar-thumb {
background-color: #0284c7; /* primary-600 主题色 */
border-radius: 8px;
border: 3px solid #f8fafc;
background-clip: padding-box; /* 确保边框透明 */
}
::-webkit-scrollbar-thumb:hover {
background-color: #0369a1; /* primary-700 悬停加深 */
border: 3px solid #f8fafc;
background-clip: padding-box;
}
::-webkit-scrollbar-corner {
background-color: transparent;
}
/* 自定义区域滚动条 - 更小更精致 */
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.05);
border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
border-radius: 3px;
}
/* 水平滚动容器 - 用于API密钥列表展示 */
.key-scroll-container {
max-width: 100%;
overflow-x: auto;
white-space: nowrap;
scrollbar-width: thin; /* Firefox支持 */
}