File size: 1,309 Bytes
bbb6398
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* 滚动条样式

 * 定制网站所有滚动条外观,提升用户界面一致性

 */

/* 主滚动条 - 适配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支持 */
}