ny
22 小时以前 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
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
.vxe-grid_scrollbar {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
 
  ::-webkit-scrollbar-track {
    background-color: #fff;
  }
 
  ::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / 10%);
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
  }
 
  ::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
  }
 
  ::-webkit-scrollbar-thumb:active {
    background-color: #a8a8a8;
  }
 
  ::-webkit-scrollbar-corner {
    background-color: #fff;
  }
}