在这里记录一下防止以后更新忘记修改的地方。

hexo侧边栏最新文章图片圆角处理

修改themes\butterfly\source\css\_layout\aside.styl第134行

1
2
3
4
5
6
.thumbnail
overflow: hidden
width: w = 4.2em
height: w
border-radius: 0.5em; //添加的

文章页的图片圆角处理

修改themes\butterfly\source\css\_layout\post.styl第154行

1
2
3
4
img
display: block
margin: 0 auto .8rem
border-radius: 0.6em; //添加的

文章页内上一篇下一篇图片圆角处理

修改themes\butterfly\source\css\_layout\pagination.styl第1行

1
2
3
4
5
#pagination
overflow: hidden
margin-top: 1rem
width: 100%
border-radius: 0.6em; //添加的

文章页内相关推荐圆角处理

修改themes\butterfly\source\css\_layout\relatedposts.styl第 9 行

1
2
3
4
5
6
7
8
9
10
11
& > .relatedPosts-list
& > div
position: relative
display: inline-block
overflow: hidden
margin: 3px
width: calc(33.333% - 6px)
height: 200px
background: $dark-black
vertical-align: bottom
border-radius: 0.6em //添加的