mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
feat: gallery 標簽外掛增加圖片懶加載,增加 lazyload rowHeight 和 limit 屬性配置 feat: 可設置固定導航欄 closed #1150 fix: 修復開啟懶加載後,再使用 flink_url 的方式引入友鏈數據,友鏈頭像有可能不顯示的 bug closed #1146 fix: 修復閲讀模式下,代碼塊的背景顏色仍顯示彩色背景的 bug (自定義代碼塊) closed #1139 improvement: 搜索結果換行時不會拆分單詞顯示 improvement: 優化搜索結果顯示滾動條位置 improvement: css/js 優化
70 lines
1.4 KiB
Stylus
70 lines
1.4 KiB
Stylus
#local-search
|
|
.search-dialog
|
|
.local-search-box
|
|
margin: 0 auto
|
|
max-width: 100%
|
|
width: 100%
|
|
|
|
input
|
|
padding: 5px 14px
|
|
width: 100%
|
|
outline: none
|
|
border: 2px solid $search-color
|
|
border-radius: 40px
|
|
background: var(--search-bg)
|
|
color: var(--search-input-color)
|
|
-webkit-appearance: none
|
|
|
|
.search-wrap
|
|
display: none
|
|
|
|
.local-search__hit-item
|
|
position: relative
|
|
padding-left: 24px
|
|
line-height: 1.7
|
|
|
|
&:hover
|
|
&:before
|
|
border-color: var(--pseudo-hover)
|
|
|
|
&:before
|
|
$w = .5em
|
|
position: absolute
|
|
top: .45em
|
|
left: 0
|
|
width: w = $w
|
|
height: h = w
|
|
border: 3px solid $search-color
|
|
border-radius: w
|
|
background: transparent
|
|
content: ''
|
|
line-height: h
|
|
transition: all .2s ease-in-out
|
|
|
|
a
|
|
display: block
|
|
color: var(--search-result-title)
|
|
font-weight: 600
|
|
cursor: pointer
|
|
|
|
&:hover
|
|
color: $search-color
|
|
|
|
.search-result
|
|
margin: 0 0 8px
|
|
word-break: break-word
|
|
|
|
.search-keyword
|
|
color: $search-keyword-highlight
|
|
font-weight: bold
|
|
|
|
.search-result-list
|
|
overflow-y: overlay
|
|
margin: 0 -20px
|
|
padding: 0 22px
|
|
max-height: calc(80vh - 130px)
|
|
|
|
+maxWidth768()
|
|
padding-bottom: 40px
|
|
max-height: 75vh !important
|