More crimes

This commit is contained in:
Thibaut Girka 2019-04-27 17:19:22 +02:00 committed by asonix
parent 97d8239837
commit 57a1c42f3c

View file

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