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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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);