UX: Add text-decoration to <ins> and <del> (#15726)

This commit is contained in:
Kyle E. Mitchell
2022-01-31 14:42:14 -08:00
committed by GitHub
parent e3c5a40432
commit 89a051eac1

View File

@@ -144,17 +144,17 @@ $quote-share-maxwidth: 150px;
word-wrap: break-word;
}
del,
ins,
mark {
text-decoration: none;
}
ins {
background-color: var(--success-low);
text-decoration: underline;
}
del {
background-color: var(--danger-low);
text-decoration: line-through;
}
mark {
background-color: var(--highlight);