source: node_modules/prismjs/plugins/diff-highlight/prism-diff-highlight.css

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 379 bytes
Line 
1pre.diff-highlight > code .token.deleted:not(.prefix),
2pre > code.diff-highlight .token.deleted:not(.prefix) {
3 background-color: rgba(255, 0, 0, .1);
4 color: inherit;
5 display: block;
6}
7
8pre.diff-highlight > code .token.inserted:not(.prefix),
9pre > code.diff-highlight .token.inserted:not(.prefix) {
10 background-color: rgba(0, 255, 128, .1);
11 color: inherit;
12 display: block;
13}
Note: See TracBrowser for help on using the repository browser.