mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-03-08 10:32:41 +08:00
25 lines
523 B
CSS
25 lines
523 B
CSS
@charset "utf-8";
|
|
/*滚动条美化*/
|
|
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
|
|
::-webkit-scrollbar
|
|
{
|
|
width:10px;
|
|
height: 5px;
|
|
}
|
|
|
|
/*定义滚动条轨道 内阴影+圆角*/
|
|
::-webkit-scrollbar-track
|
|
{
|
|
-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
/*定义滑块 内阴影+圆角*/
|
|
::-webkit-scrollbar-thumb
|
|
{
|
|
border-radius: 10px;
|
|
-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0);
|
|
background-color: #3792ef;
|
|
}
|
|
|
|
/*滚动条美化*/ |