Skip to content

Commit 679903f

Browse files
committed
v1.2.2
1 parent be38438 commit 679903f

File tree

9 files changed

+26
-11
lines changed

9 files changed

+26
-11
lines changed

README.MD

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
4. `简洁高效`,以 Markdown 为中心的项目结构。内置自动化工具,以更少的配置完成更多的事。配合多维索引快速定位每个知识点。
2626

2727
## 上新推荐 🎉
28-
* `v1.1.0`版本发布啦~,从这个版本开始主题新增了两个`超好用``高颜值`的Markdown容器,快去 [体验](https://xugaoyi.github.io/vuepress-theme-vdoing-doc/pages/d0d7eb)~ (2020.05.29)
28+
* `v1.2.x`:这个版本对整体的UI细节做了很多优化,比如标签栏和分类栏等 (2020.06.09)
29+
* `v1.1.x`:从这个版本开始主题新增了两个`超好用``高颜值`的Markdown容器,快去 [体验](https://xugaoyi.github.io/vuepress-theme-vdoing-doc/pages/d0d7eb)~ (2020.05.29)
2930

3031
## 这个主题可以做什么?
3132
* 案例1:[知识库兼博客站](https://xugaoyi.com/)

docs/.vuepress/styles/index.styl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
.gt-container
44
.gt-ico-tip
55
&::after
6-
content: '。( Win + . ) or ( ⌃ + ⌘ + ␣ ) open Emoji'
6+
content: '。( Win + . ) ( ⌃ + ⌘ + ␣ ) 打开表情'
77
color: #999
8+
font-size: .8rem
89
.gt-meta
910
border-color var(--borderColor)!important
1011
.gt-comments-null

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ features: # 可选的
2727

2828

2929
<!-- 小熊猫 -->
30-
<img src="/img/panda-waving.png" class="panda no-zoom" style="width: 130px;height: 115px;opacity: 0.8;margin-bottom: -4px;padding-bottom:0;position: fixed;bottom: 0;left: 0.5rem;">
30+
<img src="/img/panda-waving.png" class="panda no-zoom" style="width: 130px;height: 115px;opacity: 0.8;margin-bottom: -4px;padding-bottom:0;position: fixed;bottom: 0;left: 0.5rem;z-index: 1;">
3131

3232
<!--
3333
## 关于

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"vuepress-plugin-one-click-copy": "^1.0.2",
2222
"vuepress-plugin-thirdparty-search": "^1.0.2",
2323
"vuepress-plugin-zooming": "^1.1.7",
24-
"vuepress-theme-vdoing": "^1.2.1",
24+
"vuepress-theme-vdoing": "^1.2.2",
2525
"yamljs": "^0.3.0"
2626
},
2727
"dependencies": {

theme-vdoing/components/Footer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default {
4848
margin-bottom 12px
4949
.iconfont
5050
padding 0 10px
51-
font-size 19px
51+
font-size 1.3rem
5252
a
5353
color inherit
5454
&:hover

theme-vdoing/components/Pagination.vue

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</span>
3030

3131
<!-- 二号位 -->
32-
<span class="ellipsis iconfont icon-jiantou_zuoer"
32+
<span class="ellipsis ell-two"
3333
v-show="currentPage > 3"
3434
@click="goIndex(currentPage - 2)"
3535
title="上两页"
@@ -50,7 +50,7 @@
5050
</span>
5151

5252
<!-- 四号位 -->
53-
<span class="ellipsis iconfont icon-jiantou_youer"
53+
<span class="ellipsis ell-four"
5454
v-show="currentPage < (pages - 2)"
5555
@click="goIndex(currentPage + 2)"
5656
title="下两页"
@@ -153,6 +153,19 @@ export default {
153153
color $accentColor
154154
&.ellipsis
155155
opacity .5
156+
&::before
157+
content '...'
158+
font-size 1.2rem
159+
@media (any-hover: hover)
160+
&.ell-two
161+
&:hover
162+
&::before
163+
content '«'
164+
&.ell-four
165+
&:hover
166+
&::before
167+
content '»'
168+
156169
> span
157170
position absolute
158171
top 0

theme-vdoing/components/TagsBar.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export default {
7575
font-size 1.2rem
7676
.tags
7777
text-align justify
78-
padding .6rem .5rem .5rem .5rem
78+
padding .8rem .5rem .5rem .5rem
7979
margin 0 -0.5rem -0.5rem -0.5rem
8080
a
8181
opacity .7
@@ -96,7 +96,7 @@ export default {
9696
&:hover
9797
opacity 1
9898
&.active
99-
box-shadow 0 0 5px rgba(0,0,0,0.2)
99+
box-shadow 0 0 6px rgba(0,0,0,0.15)
100100
transform scale(1.22)
101101
opacity 1
102102
text-shadow 1px 1px 0 rgba(0,0,0,0.2)

theme-vdoing/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vuepress-theme-vdoing",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Vdoing theme for VuePress. 一个基于VuePress的知识管理兼博客主题。",
55
"author": {
66
"name": "gaoyi(Evan) Xu"

theme-vdoing/styles/index.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// 引入字体图标
2-
@import '//at.alicdn.com/t/font_1678482_5p581gkjq75.css'
2+
@import '//at.alicdn.com/t/font_1678482_6r27btn77j5.css'
33

44
@require './config'
55
@require './code'

0 commit comments

Comments
 (0)