Compare commits

..

56 Commits
3.8.0 ... 3.8.2

8 changed files with 25 additions and 18 deletions

View File

@@ -461,9 +461,9 @@ google_adsense:
# -------------------------------------- # --------------------------------------
site_verification: site_verification:
# - name: google_site_verification # - name: google-site-verification
# content: xxxxxx # content: xxxxxx
# - name: baidu_site_verification # - name: baidu-site-verification
# content: xxxxxxx # content: xxxxxxx
# Beautify/Effect (美化/效果) # Beautify/Effect (美化/效果)

View File

@@ -21,7 +21,17 @@ script.
math.end = {node: text, delim: '', n: 0} math.end = {node: text, delim: '', n: 0}
doc.math.push(math) doc.math.push(math)
} }
}, ''] }, ''],
insertScript: [200, () => {
document.querySelectorAll('mjx-container:not\([display]\)').forEach(node => {
const target = node.parentNode
if (target.nodeName.toLowerCase() === 'li') {
target.parentNode.classList.add('has-jax')
} else {
target.classList.add('has-jax')
}
});
}, '', false]
} }
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "hexo-theme-butterfly", "name": "hexo-theme-butterfly",
"version": "3.8.0", "version": "3.8.2",
"description": "A Simple and Card UI Design theme for Hexo", "description": "A Simple and Card UI Design theme for Hexo",
"main": "package.json", "main": "package.json",
"scripts": { "scripts": {
@@ -24,7 +24,7 @@
}, },
"dependencies": { "dependencies": {
"hexo-renderer-stylus": "^2.0.1", "hexo-renderer-stylus": "^2.0.1",
"hexo-renderer-pug": "^1.0.0" "hexo-renderer-pug": "^2.0.0"
}, },
"homepage": "https://butterfly.js.org/", "homepage": "https://butterfly.js.org/",
"author": "Jerry <i@immyw.com>", "author": "Jerry <i@immyw.com>",

View File

@@ -9,7 +9,7 @@
// index // index
&.full_page &.full_page
min-height: $index_top_img_height height: $index_top_img_height
background-attachment: fixed background-attachment: fixed
#site-info #site-info
@@ -70,7 +70,7 @@
// page // page
&.not-home-page &.not-home-page
min-height: 20rem height: 20rem
+maxWidth768() +maxWidth768()
height: 14rem height: 14rem
@@ -86,7 +86,7 @@
// post // post
&.post-bg &.post-bg
min-height: 20rem height: 20rem
+maxWidth768() +maxWidth768()
height: 18rem height: 18rem
@@ -118,7 +118,7 @@
&.not-top-img &.not-top-img
margin-bottom: .5rem margin-bottom: .5rem
min-height: 60px height: 60px
background: 0 background: 0
#nav #nav

View File

@@ -90,14 +90,11 @@ if hexo-config('waline.bg')
display: none display: none
// mathjax // mathjax
mjx-container mjx-container[display],
.has-jax
overflow-x: auto overflow-x: auto
overflow-y: hidden overflow-y: hidden
&:not([display])
display: inline-grid
max-width: 100%
.aplayer .aplayer
color: $font-black color: $font-black

View File

@@ -1,7 +1,7 @@
#body-wrap #body-wrap
display: flex display: flex
flex-direction: column flex-direction: column
height: 100vh min-height: 100vh
.layout .layout
display: flex display: flex

View File

@@ -33,7 +33,7 @@ $font-color = #1F2D3D
$rem = 20px $rem = 20px
$text-line-height = 2 $text-line-height = 2
$web-bg = hexo-config('background') && unquote(hexo-config('background')) $web-bg = hexo-config('background') && unquote(hexo-config('background'))
$index_top_img_height = hexo-config('index_top_img_height') ? convert(hexo-config('index_top_img_height')) : 100% $index_top_img_height = hexo-config('index_top_img_height') ? convert(hexo-config('index_top_img_height')) : 100vh
$index_site_info_top = hexo-config('index_site_info_top') ? convert(hexo-config('index_site_info_top')) : 43% $index_site_info_top = hexo-config('index_site_info_top') ? convert(hexo-config('index_site_info_top')) : 43%
// Global color & SVG // Global color & SVG
$light-blue = $theme-color $light-blue = $theme-color

View File

@@ -294,7 +294,7 @@ document.addEventListener('DOMContentLoaded', function () {
} }
const addMediumZoom = () => { const addMediumZoom = () => {
const zoom = mediumZoom(document.querySelectorAll('#article-container :not(a)>img')) const zoom = mediumZoom(document.querySelectorAll('#article-container :not(a):not(.flink-item-icon) > img'))
zoom.on('open', e => { zoom.on('open', e => {
const photoBg = document.documentElement.getAttribute('data-theme') === 'dark' ? '#121212' : '#fff' const photoBg = document.documentElement.getAttribute('data-theme') === 'dark' ? '#121212' : '#fff'
zoom.update({ zoom.update({
@@ -305,7 +305,7 @@ document.addEventListener('DOMContentLoaded', function () {
const jqLoadAndRun = () => { const jqLoadAndRun = () => {
const $fancyboxEle = GLOBAL_CONFIG.lightbox === 'fancybox' const $fancyboxEle = GLOBAL_CONFIG.lightbox === 'fancybox'
? document.querySelectorAll('#article-container :not(a):not(.gallery-group) > img, #article-container > img') ? document.querySelectorAll('#article-container :not(a):not(.gallery-group):not(.flink-item-icon) > img, #article-container > img')
: [] : []
const fbLengthNoZero = $fancyboxEle.length > 0 const fbLengthNoZero = $fancyboxEle.length > 0
const $jgEle = document.querySelectorAll('#article-container .justified-gallery') const $jgEle = document.querySelectorAll('#article-container .justified-gallery')