Skip to content

Commit

Permalink
Fix highlighting of sections in edit history
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntimeX committed Oct 4, 2024
1 parent bbc2f6e commit e490dd9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions wcfsetup/install/files/style/ui/messageEditHistory.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,16 @@
grid-template-columns: 1fr 1fr;
}

del {
del,
.vdd-removed {
background-color: var(--diffDel-background);
color: var(--diffDel-color);
text-decoration: line-through;
}

ins {
ins,
.vdd-added,
.vdd-modified {
background-color: var(--diffIns-background);
color: var(--diffIns-color);
text-decoration: none;
Expand Down

0 comments on commit e490dd9

Please sign in to comment.