Skip to content

Commit fc140ef

Browse files
committed
fix(vue.css): update sidebar style
1 parent e1da2f8 commit fc140ef

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

docs/zh-cn.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ window.$docsify = {
471471

472472
### 全文检索 - search
473473

474-
一份文档如果能有搜索功能会提升一些用户体验,加载搜索插件也很简单,直接引入就自动安装并启用。默认情况下会自动分析当前页面上的超链接,获取内容后建立索引并存储在 localStorage 里,默认过期时间为一天,当然这是可配置的。
474+
一份文档如果能有搜索功能会提升一些用户体验,加载搜索插件也很简单,直接引入就自动安装并启用。默认情况下会自动分析当前页面上的超链接,获取内容后建立索引并存储在 `localStorage` 里,默认过期时间为一天,当然这是可配置的。
475475

476476
自动识别的方式不一定能识别完整或者如果你想指定某些文件可索引,你可以自己指定文件的路径。
477477

src/themes/basic/_layout.css

+17
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,23 @@ main {
235235
ul li ul {
236236
padding-left: 20px;
237237
}
238+
239+
&::-webkit-scrollbar {
240+
width: 4px;
241+
}
242+
243+
&::-webkit-scrollbar-thumb {
244+
background: transparent;
245+
border-radius: 4px;
246+
}
247+
248+
&:hover::-webkit-scrollbar-thumb {
249+
background: rgba(136, 136, 136, 0.4);
250+
}
251+
252+
&:hover::-webkit-scrollbar-track {
253+
background: rgba(136, 136, 136, 0.1);
254+
}
238255
}
239256

240257
/* sidebar toggle */

src/themes/vue.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@ body {
2222
}
2323

2424
ul li a {
25-
color: #7f8c8d;
25+
color: #505d6b;
2626
text-overflow: ellipsis;
2727
overflow: hidden;
2828
white-space: nowrap;
2929
text-decoration: none;
30+
font-size: 14px;
3031

3132
&:hover {
3233
text-decoration: underline;

0 commit comments

Comments
 (0)