styles.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. body {
  2. background: #fff;
  3. font-family: Arial;
  4. font-size: 12px;
  5. }
  6. .Differences {
  7. width: 100%;
  8. border-collapse: collapse;
  9. border-spacing: 0;
  10. empty-cells: show;
  11. }
  12. .Differences thead th {
  13. text-align: left;
  14. border-bottom: 1px solid #000;
  15. background: #aaa;
  16. color: #000;
  17. padding: 4px;
  18. }
  19. .Differences tbody th {
  20. text-align: right;
  21. background: #ccc;
  22. width: 4em;
  23. padding: 1px 2px;
  24. border-right: 1px solid #000;
  25. vertical-align: top;
  26. font-size: 13px;
  27. }
  28. .Differences td {
  29. padding: 1px 2px;
  30. font-family: Consolas, monospace;
  31. font-size: 13px;
  32. }
  33. .DifferencesSideBySide .ChangeInsert td.Left {
  34. background: #dfd;
  35. }
  36. .DifferencesSideBySide .ChangeInsert td.Right {
  37. background: #cfc;
  38. }
  39. .DifferencesSideBySide .ChangeDelete td.Left {
  40. background: #f88;
  41. }
  42. .DifferencesSideBySide .ChangeDelete td.Right {
  43. background: #faa;
  44. }
  45. .DifferencesSideBySide .ChangeReplace .Left {
  46. background: #fe9;
  47. }
  48. .DifferencesSideBySide .ChangeReplace .Right {
  49. background: #fd8;
  50. }
  51. .Differences ins, .Differences del {
  52. text-decoration: none;
  53. }
  54. .DifferencesSideBySide .ChangeReplace ins, .DifferencesSideBySide .ChangeReplace del {
  55. background: #fc0;
  56. }
  57. .Differences .Skipped {
  58. background: #f7f7f7;
  59. }
  60. .DifferencesInline .ChangeReplace .Left,
  61. .DifferencesInline .ChangeDelete .Left {
  62. background: #fdd;
  63. }
  64. .DifferencesInline .ChangeReplace .Right,
  65. .DifferencesInline .ChangeInsert .Right {
  66. background: #dfd;
  67. }
  68. .DifferencesInline .ChangeReplace ins {
  69. background: #9e9;
  70. }
  71. .DifferencesInline .ChangeReplace del {
  72. background: #e99;
  73. }
  74. pre {
  75. width: 100%;
  76. overflow: auto;
  77. }