Skip to content

Commit

Permalink
🔖 v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Achuan-2 committed May 8, 2024
1 parent 49b2b2b commit 5fab050
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ Tsundoku “積 ん 読”是日语里的一个词,维基百科是这样解释

### Green 主题如何关闭纹理背景
在思源笔记【**设置-外观-代码片段**】添加如下代码片段:

<details>
<summary>Green 主题如何关闭纹理背景</summary>

```css
.protyle-wysiwyg * {
background-image:none !important;
Expand All @@ -151,19 +155,29 @@ background-image:none !important;

}
```
</details>


### h1 主题默认居中,如何改为居左

在思源笔记【**设置-外观-代码片段**】添加如下代码片段:
<details>
<summary> h1 主题改为居左</summary>

```css
.protyle-wysiwyg .h1 {
text-align:left !important;
border-bottom: none;
}
```
</details>

### h3-h5 添加背景色

在思源笔记【**设置-外观-代码片段**】添加如下代码片段:
<details>
<summary>h3-h5 添加背景色</summary>

```css
.protyle-wysiwyg [data-node-id].h3,
.b3-typography h3 {
Expand Down Expand Up @@ -191,10 +205,17 @@ text-align:left !important;
}

```
</details>



### 无序列表添加层级样式

在思源笔记【**设置-外观-代码片段**】添加如下代码片段:

<details>
<summary>无序列表添加层级样式代码</summary>

```css
[data-subtype="u"]>.li[data-subtype="u"]>.protyle-action svg{
color:transparent;
Expand Down Expand Up @@ -246,9 +267,16 @@ text-align:left !important;
```


</details>

### 标题后添加小圆点

在思源笔记【**设置-外观-代码片段**】添加如下代码片段:


<details>
<summary>标题后添加小圆点</summary>

```css

:root {
Expand Down Expand Up @@ -351,6 +379,10 @@ text-align:left !important;
}

```
</details>





## ❤ 致谢
Expand Down

0 comments on commit 5fab050

Please sign in to comment.