版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

prism-diff-highlight.css 379 B

пре 1 година
12345678910111213
  1. pre.diff-highlight > code .token.deleted:not(.prefix),
  2. pre > code.diff-highlight .token.deleted:not(.prefix) {
  3. background-color: rgba(255, 0, 0, .1);
  4. color: inherit;
  5. display: block;
  6. }
  7. pre.diff-highlight > code .token.inserted:not(.prefix),
  8. pre > code.diff-highlight .token.inserted:not(.prefix) {
  9. background-color: rgba(0, 255, 128, .1);
  10. color: inherit;
  11. display: block;
  12. }