Skip to content

Commit

Permalink
🔖 v2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Achuan-2 committed May 15, 2024
1 parent c18117b commit 3e4ce44
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v2.1.3 / 2024.05.15
- 💄引述块样式修改:light 主题引述块添加border-left,设置为0.3em宽度

## v2.1.2 / 2024.05.10
- 🔥 取消代码块限制最大高度

Expand Down
7 changes: 6 additions & 1 deletion README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@

## 🚀最近更新

v2.1.3 / 2024.05.15
- 💄引述块样式修改:light 主题引述块添加border-left,设置为0.3em宽度

v2.1.2 / 2024.05.10
- 🔥 取消代码块限制最大高度

Expand Down Expand Up @@ -407,4 +410,6 @@ border-bottom: none;

<div align="center">
<img src="donate.webp" width="250" />
</div>
</div>


4 changes: 2 additions & 2 deletions style/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,9 @@
.protyle-wysiwyg [data-node-id].bq:not([style*='background-color']) {
/* border: 1px solid var(--custom-blockquote-border-color); */
padding: 2px 4px;
border-left: 0em solid #4c6778;
background-color: #73a8c70f;
border: 1px solid #d0e2ee;
border: 0px solid transparent;
border-left: 0.3em solid #a4b1ba;
border-radius: 7px !important;
color: #6a6969;
}
Expand Down
26 changes: 24 additions & 2 deletions style/export.css
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,10 @@ text-align:center;
/* 引述块 */
[data-theme-mode="light"] .protyle-preview>.b3-typography blockquote,
#preview.protyle-wysiwyg blockquote{
border-left: 0em solid #4c6778;
border-left: 0em solid #a4b1ba;
background-color: #F7FAFC;
border: 1px solid rgb(224 239 249);
border: 0px solid transparent;
border-left: 0.3em solid #a4b1ba;
border-radius: 7px !important;
}
/* 分割线 */
Expand All @@ -135,6 +136,22 @@ text-align:center;
border-bottom: 1px solid #d1d3d6;
margin: 21px 213px;
}
/* 表格 */
.b3-typography table {
border-collapse: collapse;
font-size: 14px !important;
margin: 1em auto;
}
.b3-typography table thead{
background: rgba(0, 0, 0, 0.05);
}
.b3-typography table tr th{
border: 1px solid #eceded;
}
.b3-typography table td,
.b3-typography table th{
font-size: 13px !important;
}
/* ---------------------------------------导出pdf-----------------------------------*/


Expand Down Expand Up @@ -170,6 +187,11 @@ text-align:center;
#preview .protyle-wysiwyg .code-block .protyle-action .protyle-action__copy{
display: none;
}

/* 表格居中 */
#preview .protyle-wysiwyg .table{
margin:auto;
}
/* ---------------------------------------导出图片-----------------------------------*/
/* 行内代码优化 */
.export-img .protyle-wysiwyg span[data-type~='code']{
Expand Down
2 changes: 1 addition & 1 deletion style/theme/Tsundoku_dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,6 @@ div[data-subtype='t'][data-type='NodeList'] {
.b3-typography blockquote,
.protyle-wysiwyg [data-node-id].bq:not([style*='background-color']) {
border: 1px solid var(--custom-blockquote-border-color);
border-left: 0.25em solid #456c74 !important;
border-left: 0.3em solid #456c74 !important;
}

2 changes: 1 addition & 1 deletion style/theme/Tsundoku_green.css
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ span[data-type='av-add-more'] {
/* 引述块 */
.b3-typography blockquote,
.protyle-wysiwyg [data-node-id].bq:not([style*='background-color']) {
border-left: 0.25em solid #8cae9b;
border-left: 0.3em solid #8cae9b;
color: #6a6969;
}

Expand Down
2 changes: 1 addition & 1 deletion theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Tsundoku",
"author": "Achuan-2",
"url": "https://github.com/Achuan-2/siyuan-themes-tsundoku",
"version": "2.1.2",
"version": "2.1.3",
"displayName": {
"default": "Tsundoku",
"zh_CN": "積読"
Expand Down

0 comments on commit 3e4ce44

Please sign in to comment.