Merge pull request #42989 from jharrilim/patch-2

Change diff highlighting background for dark mode
This commit is contained in:
Rafael França 2021-09-20 16:28:14 -04:00 committed by GitHub
commit b3efb35aa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -271,6 +271,6 @@
.highlight .gh { } /* Generic Heading & Diff Header */
.highlight .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
.highlight .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
.highlight .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
.highlight .gd { color: #f92672; background-color: unset; } /* Generic.Deleted & Diff Deleted */
.highlight .gi { color: #a6e22e; background-color: unset; } /* Generic.Inserted & Diff Inserted */
}