public.less 490 字节
Newer Older
陈文彬 已提交
1 2 3 4 5 6 7
/* 滚动槽 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

// TODO 滚动条样式-待修改
V
vben 已提交
8 9 10 11 12
// ::-webkit-scrollbar-track {
//   // background: rgba(0, 0, 0, 0.06);
//   // border-radius: 2px;
//   // box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
// }
陈文彬 已提交
13 14 15 16 17 18 19 20 21 22 23

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: @disabled-color;
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: @border-color-dark;
}