将下列CSS代码放入WP额外CSS中(WP后台-外观-自定义-额外css)
或将CSS代码放入主题或者子主题的样式文件内部,然后强制刷新即可。
/* 极主题滚动条样式 */
::-webkit-scrollbar {
background-color: rgb(255 255 255);
width: 5px;
height: 5px;
}
::-webkit-scrollbar-thumb {
background-color: rgb(255 60 86 / 95%);
border-radius: 0px;
-webkit-transition: background 200ms ease;
-moz-transition: background 200ms ease;
transition: background 200ms ease;
/* jitheme.com */
}
pre ::-webkit-scrollbar-thumb {
background-color: rgb(253 115 1 / 0.5)
}
::-webkit-scrollbar-thumb:hover {
background-color: #4f3d3a;
}
::-webkit-scrollbar-button {
display: none;
/* jitheme.com */
}