@@ -350,4 +350,28 @@ div,li,span,i,p,h1,h2,h3,h4,h5,pre{
font-size: 12px;
white-space: nowrap;
}
-}
+}
+
+.infos::-webkit-scrollbar, .anchors::-webkit-scrollbar {
+ /*滚动条整体样式*/
+ width: 6px;
+ height: 100px;
+ /*高宽分别对应横竖滚动条的尺寸*/
+ background: #ebeef5;
+ -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.2);
+.infos::-webkit-scrollbar-thumb, .anchors::-webkit-scrollbar-thumb {
+ /*滚动条里面小方块*/
+ border-radius: 5px;
+ background: @staticMainColor;
+.infos::-webkit-scrollbar-track, .anchors::-webkit-scrollbar-track {
+ /*滚动条里面轨道*/
+ border-radius: 2px;
+ background: #f0f2f5;
+ opacity: .2;