RevisionDiff.module.scss 737 B

1234567891011121314151617181920212223242526272829303132333435
  1. @use '~/styles/bootstrap/init' as bs;
  2. .revision-diff-container :global {
  3. .comparison-header {
  4. height: 34px;
  5. background-color: #ffffff;
  6. border: 1px solid bs.$gray-300;
  7. .comparison-source-wrapper {
  8. height: 26px;
  9. margin-right: 1px;
  10. border-right: 1px solid bs.$gray-300;
  11. .comparison-source {
  12. color: bs.$gray-500;
  13. }
  14. }
  15. .comparison-target-wrapper {
  16. height: 26px;
  17. .comparison-target {
  18. color: bs.$gray-500;
  19. }
  20. }
  21. }
  22. .revision-history-diff {
  23. color: bs.$gray-900;
  24. table-layout: fixed;
  25. // revision-history
  26. // to stay d2h-code-side-line-number in the revision history diff area
  27. .d2h-wrapper {
  28. position: relative;
  29. }
  30. }
  31. }