mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
1. 可設置隱藏文章 2. 適配 Hexo 的 Tag Plugins Code Block With marked lines 顯示 3. 可配置首頁cover顯示的位置 4. 更改深色模式下的配色 5. activate_power_mode 增加關閉顏色和抖動 6. 增加谷歌廣告,騰訊分析 7. 相關文章增加時間顯示,調整佈局,垂直居中 8. 文章頁面,top_img增加評論數顯示 9. 可以取消點擊圖片觀看大圖 10. mathjax和kathex可設置每頁都加載還是按需加載 11. 深色模式下,滾動條顔色的適配 12. 優化gitalk 在 dark mode下的顯示 13. 文章頁,文章標題過長時,只顯示三行內容 14. 深色模式下,背景圖片加上蒙板 15. 優化深色/閲讀模式下,canvas的顯示 16. 優化打賞的特效和移動到二維碼不會立刻消失 17. 優化sub-menu樣式 18. 修改aside 的tags顔色,在深色模式下不會出現觀看困難 19. 升級 normalize.css 到最新版 20. 優化手機上toc和menu的打開動畫 21. 優化代碼框打開關閉的特效 22. 精簡js,部分操作改為css控制 23. 優化主題的一些動畫,不會過於生硬 1. 修復當圖片被a標簽包圍時,點擊圖標沒有跳轉到對應網頁而是出現大圖觀看模式的bug 2. 修復當網址有subdirectory時,menu、打賞二維碼和lodding_bg 鏈接路徑錯誤的bug 3. 修復當網址有subdirectory時, 4. 修復katex 的 CSS無法讀取bug 5. 修復搜索按鈕在文章頁不顯示的bug 6. 修復gitalk css引用失敗的bug 7. 修復 點擊特效 煙花 無效的bug 8. 修復gitalk報path.startsWith is not a function的bug 9. 修復 閲讀模式下,背景沒有變純色的bug 10. 修復閲讀模式下,header 偶爾出現沒有靠攏頂部的bug 11. 修復Hexo Tag Plugins Block Quote 裏的鏈接顯示出外面的Bug 12. 修復aside歸檔日期過長導致錯位的bug 13. 修復toc為空時,toc按鈕仍存在的bug 14. 修復關閉懶加載後,頭像無法顯示的bug 15. 修復深色模式下,切換readmode偶爾會無效的bug 16. 修復在一些手機設備上,toc和menu的按鈕顯示不對齊的bug #72
298 lines
5.5 KiB
Stylus
298 lines
5.5 KiB
Stylus
// https://github.com/equinusocio/vsc-material-theme
|
|
@require 'theme'
|
|
@require 'diff'
|
|
|
|
wordWrap = !hexo-config('rootConfig.highlight.line_number') && hexo-config('code_word_wrap')
|
|
|
|
$code-block
|
|
overflow: auto
|
|
margin: 0 0 1rem
|
|
padding: 0
|
|
background: $highlight-background
|
|
color: $highlight-foreground
|
|
font-size: $code-font-size
|
|
line-height: $line-height-code-block
|
|
|
|
if wordWrap
|
|
counter-reset: line
|
|
white-space: pre-wrap
|
|
|
|
.code-area-wrap
|
|
position: relative
|
|
margin: 0 0 1rem
|
|
|
|
figure.highlight
|
|
position: relative
|
|
|
|
blockquote
|
|
margin: 0 0 1rem
|
|
padding: .1rem .8rem
|
|
border-left: .2rem solid $blockquote-padding-color
|
|
background-color: lighten($blockquote-padding-color, 33)
|
|
color: $blockquote-color
|
|
|
|
a
|
|
word-break: break-all
|
|
|
|
p
|
|
margin: 0 !important
|
|
padding: .5rem 0
|
|
|
|
footer
|
|
padding: 0 0 .5rem
|
|
|
|
cite
|
|
&:before
|
|
padding: 0 .3em
|
|
content: '—'
|
|
|
|
.article-container
|
|
pre,
|
|
code
|
|
font-family: $code-font !important
|
|
|
|
code
|
|
padding: .1rem .2rem
|
|
background: $code-background
|
|
color: $code-foreground
|
|
word-wrap: break-word
|
|
font-size: $code-font-size
|
|
|
|
pre
|
|
@extend $code-block
|
|
padding: 10px 20px
|
|
|
|
code
|
|
padding: 0
|
|
background: none
|
|
color: $highlight-foreground
|
|
text-shadow: none
|
|
|
|
.highlight
|
|
@extend $code-block
|
|
position: relative
|
|
border-radius: 1px
|
|
|
|
if hexo-config('highlight_shrink') == true
|
|
display: none
|
|
|
|
pre
|
|
margin: 0
|
|
padding: 8px 0
|
|
border: none
|
|
|
|
.line
|
|
&::selection
|
|
background: $highlight-selection
|
|
color: $highlight-foreground
|
|
|
|
if wordWrap
|
|
&:before
|
|
display: inline-block
|
|
padding: 0 .3rem 0 0
|
|
min-width: 1.6rem
|
|
color: $highlight-gutter.color
|
|
content: counter(line)
|
|
counter-increment: line
|
|
text-align: left
|
|
|
|
&.marked
|
|
background-color: $highlight-selection
|
|
|
|
table
|
|
position: relative
|
|
margin: 0
|
|
width: auto
|
|
border: none
|
|
|
|
td
|
|
padding: 0
|
|
border: none
|
|
|
|
figcaption
|
|
clearfix()
|
|
position: absolute
|
|
z-index: 1
|
|
margin-bottom: 1em
|
|
padding: .2rem 0 .2rem .7rem
|
|
width: 100%
|
|
height: 1.4em
|
|
color: $highlight-foreground
|
|
font-size: 1em
|
|
line-height: 1em
|
|
|
|
span
|
|
float: left
|
|
overflow: hidden
|
|
max-width: 100%
|
|
text-overflow: ellipsis
|
|
white-space: nowrap
|
|
|
|
a
|
|
float: right
|
|
padding-right: 10px
|
|
color: $highlight-foreground
|
|
|
|
&:hover
|
|
border-bottom-color: $highlight-foreground
|
|
|
|
&+table
|
|
margin-top: 1.1rem
|
|
|
|
&:before
|
|
margin-top: -2.1rem
|
|
|
|
&:after
|
|
top: -2.1rem
|
|
|
|
.gutter pre
|
|
padding-right: .5rem
|
|
padding-left: .5rem
|
|
background-color: $highlight-gutter.bg-color
|
|
color: $highlight-gutter.color
|
|
text-align: right
|
|
|
|
.code pre
|
|
padding-right: .5rem
|
|
padding-left: .5rem
|
|
width: 100%
|
|
background-color: $highlight-background
|
|
|
|
.line
|
|
height: 1rem
|
|
|
|
.gutter
|
|
user-select: none
|
|
-webkit-user-select: none
|
|
-moz-user-select: none
|
|
-ms-user-select: none
|
|
|
|
.gist table
|
|
width: auto
|
|
|
|
td
|
|
border: none
|
|
|
|
// For diff highlight
|
|
pre .deletion
|
|
background: $highlight-deletion
|
|
|
|
pre .addition
|
|
background: $highlight-addition
|
|
|
|
pre .meta
|
|
color: $highlight-purple
|
|
|
|
pre
|
|
.comment
|
|
color: $highlight-comment
|
|
|
|
&::selection
|
|
background: $highlight-selection
|
|
color: $highlight-foreground
|
|
|
|
.variable,
|
|
.attribute,
|
|
.regexp,
|
|
.ruby .constant,
|
|
.xml .tag .title,
|
|
.xml .pi,
|
|
.xml .doctype,
|
|
.html .doctype,
|
|
.css .id,
|
|
.tag .name,
|
|
.css .class,
|
|
.css .pseudo
|
|
color: $highlight-red
|
|
|
|
&::selection
|
|
background: $highlight-selection
|
|
color: $highlight-foreground
|
|
|
|
.tag
|
|
color: $highlight-aqua
|
|
|
|
&::selection
|
|
background: $highlight-selection
|
|
color: $highlight-foreground
|
|
|
|
.number,
|
|
.preprocessor,
|
|
.literal,
|
|
.params,
|
|
.constant,
|
|
.command
|
|
color: $highlight-orange
|
|
|
|
&::selection
|
|
background: $highlight-selection
|
|
color: $highlight-foreground
|
|
|
|
.built_in
|
|
color: $highlight-yellow
|
|
|
|
&::selection
|
|
background: $highlight-selection
|
|
color: $highlight-foreground
|
|
|
|
.ruby .class .title,
|
|
.css .rules .attribute,
|
|
.string,
|
|
.value,
|
|
.inheritance,
|
|
.header,
|
|
.ruby .symbol,
|
|
.xml .cdata,
|
|
.special,
|
|
.number,
|
|
.formula
|
|
color: $highlight-green
|
|
|
|
&::selection
|
|
background: $highlight-selection
|
|
color: $highlight-foreground
|
|
|
|
.keyword,
|
|
.title,
|
|
.css .hexcolor
|
|
color: $highlight-aqua
|
|
|
|
&::selection
|
|
background: $highlight-selection
|
|
color: $highlight-foreground
|
|
|
|
.function,
|
|
.python .decorator,
|
|
.python .title,
|
|
.ruby .function .title,
|
|
.ruby .title .keyword,
|
|
.perl .sub,
|
|
.javascript .title,
|
|
.coffeescript .title
|
|
color: $highlight-blue
|
|
|
|
&::selection
|
|
background: $highlight-selection
|
|
color: $highlight-foreground
|
|
|
|
.tag .attr,
|
|
.javascript .function
|
|
color: $highlight-purple
|
|
|
|
&::selection
|
|
background: $highlight-selection
|
|
color: $highlight-foreground
|
|
|
|
.highlight-tools
|
|
position: relative
|
|
width: 100%
|
|
height: 1.4rem
|
|
background: darken($highlight-background, 5)
|
|
color: $highlight-foreground
|
|
font-size: 14px
|
|
|
|
& + figure
|
|
margin: 0 !important
|
|
|
|
.highlight-close
|
|
height: 0 !important |