|
@@ -304,4 +304,28 @@
|
|
|
left: 20px;
|
|
|
z-index: 20;
|
|
|
background-color: #fff;
|
|
|
-}
|
|
|
+}
|
|
|
+
|
|
|
+.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 {
|
|
|
+ /*滚动条里面小方块*/
|
|
|
+ width: 6px;
|
|
|
+ border-radius: 5px;
|
|
|
+ background: @staticMainColor;
|
|
|
+ height: 100px;
|
|
|
+}
|
|
|
+
|
|
|
+.infos::-webkit-scrollbar-track, .anchors::-webkit-scrollbar-track {
|
|
|
+ /*滚动条里面轨道*/
|
|
|
+ border-radius: 2px;
|
|
|
+ background: #f0f2f5;
|
|
|
+ opacity: .2;
|
|
|
+}
|