We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 859ce0e commit dbb8618Copy full SHA for dbb8618
1 file changed
Template/Public/Style/PublicCSS.css
@@ -2,7 +2,7 @@
2
* @Date : 2020-10-18 10:52:43
3
* @Author : MemoryShadow
4
* @LastEditors : MemoryShadow
5
- * @LastEditTime : 2021-01-07 23:00:40
+ * @LastEditTime : 2021-02-24 12:55:57
6
* @Description : 基础组件css样式
7
*/
8
@@ -81,4 +81,29 @@ div#bottom {
81
bottom: 1px;
82
left: 0px;
83
width: 100%;
84
+}
85
+
86
+/**
87
+ * 启用滚动条自定义样式
88
+*/
89
90
+.ScrollBar::-webkit-scrollbar {
91
+ /*滚动条整体样式*/
92
+ width: 5px;
93
+ /*高宽分别对应横竖滚动条的尺寸*/
94
+ height: 5px;
95
96
97
+.ScrollBar::-webkit-scrollbar-thumb {
98
+ /*滚动条里面小方块*/
99
+ border-radius: 3px;
100
+ -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
101
+ background: #aaa;
102
103
104
+.ScrollBar::-webkit-scrollbar-track {
105
+ /*滚动条里面轨道*/
106
107
108
+ background: #fff;
109
}
0 commit comments