More crimes

这个提交包含在:
Thibaut Girka 2019-04-27 17:19:22 +02:00 提交者 asonix
父节点 97d8239837
当前提交 57a1c42f3c
共有 1 个文件被更改,包括 26 次插入0 次删除

查看文件

@ -712,6 +712,11 @@
&:not(.rich-text) {
del {
text-decoration: none;
&::before,
&::after {
content: '~~';
}
}
code {
@ -720,6 +725,11 @@
u {
text-decoration: none;
&::before,
&::after {
content: '__';
}
}
h1::before {
@ -741,6 +751,22 @@
h5::before {
content: '##### ';
}
b,
strong {
&::before,
&::after {
content: '**';
}
}
em,
i {
&::before,
&::after {
content: '*';
}
}
}
&:not(.rich-blocks) {