-
帖子嵌入的 B 站视频应该禁用自动播放
2024-03-14 19:49 -
求完善标题块代码片段
2024-03-14 19:06改好了:
div[data-subtype^="h1"]:not([type])>div:first-child:after{ content:" 1️⃣"; font-size:0.7em; opacity: 0.4; } div[data-subtype^="h2"]>div:first-child:after{ content:" 2️⃣"; font-size:0.7em; opacity: 0.4; } div[data-subtype^="h3"]>div:first-child:after{ content:" 3️⃣"; font-size:0.8em; font-size:0.7em; opacity: 0.4; } div[data-subtype^="h4"]>div:first-child:after{ content:" 4️⃣"; font-size:0.8em; font-size:0.7em; opacity: 0.4; } div[data-subtype^="h5"]>div:first-child:after{ content:" 5️⃣"; font-size:0.8em; font-size:0.7em; opacity: 0.4; } div[data-subtype^="h6"]>div:first-child:after{ content:" 6️⃣"; font-size:0.8em; font-size:0.7em; opacity: 0.4; }
-
有无办法一键删除所有文档中的空白块?
2024-03-14 12:34单个块的话可以按 Ctrl+X 一键剪切,或者按 Esc 选中当前块再按 Delete 删除。「一键」的话得靠插件实现(但我不会做插件)
-
用 SQL 回忆一下自己使用思源的历程
2024-03-14 00:15可以哦
BlockCnt month 1 364 202306 2 7935 202307 3 6371 202308 4 13634 202309 5 5059 202310 6 4424 202311 7 4918 202312 8 1621 202401 9 2508 202402 10 9053 202403 -
如何缩小公式字体
2024-03-13 16:54给你个 CSS 代码片段,有什么问题的话自己调整吧:
[data-type="inline-math"] { font-size: 80%; /*调整字号*/ }
-
能否提供更多样的页签展示方式
2024-03-13 15:43我又搞了一个让页签叉号始终显示的 CSS 代码片段,体验更接近浏览器了:
/*始终显示页签叉号*/ .layout-tab-bar .item:hover .item__close svg, .layout-tab-bar .item .item__close svg { opacity: .68; }
-
怎么让页签上的叉始终显示?
2024-03-13 15:39我已经自己搞明白了:
.layout-tab-bar .item:hover .item__close svg, .layout-tab-bar .item .item__close svg { opacity: .68; }