-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 💄列表竖线颜色调整,适配导出pdf * 🎨 导出样式放在print.css * 💄blockquote样式优化
- Loading branch information
Showing
4 changed files
with
110 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
#preview.protyle-wysiwyg .h1 { | ||
text-align: center !important; | ||
} | ||
|
||
#preview.protyle-wysiwyg .h1:not(:first-child, :nth-child(2)) { | ||
/* h1标题前分页,但不选择文档中的第一个标题 */ | ||
page-break-before: always; | ||
} | ||
|
||
#preview.protyle-wysiwyg .h1 + .h1 { | ||
/* 两个h1连着后面的h1不分页,有些人可能文档标题下第一个标题就是h1 */ | ||
page-break-before: auto; | ||
} | ||
|
||
/* 设置导出样式 */ | ||
@media print { | ||
:root { | ||
font-family: var(--b3-font-family); | ||
} | ||
} | ||
/* 导出的链接样式 */ | ||
#preview.protyle-wysiwyg a { | ||
color: var(--b3-protyle-inline-link-color); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters