RevisionComparer.module.scss 769 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @use '@growi/core/scss/bootstrap/init' as bs;
  2. @use '@growi/ui/scss/atoms/btn-muted';
  3. .revision-compare :global {
  4. .revision-compare-container {
  5. min-height: 100px;
  6. &.nodiff {
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. }
  11. }
  12. .d2h-file-header {
  13. display: none;
  14. }
  15. .grw-copy-dropdown {
  16. .btn.btn-copy {
  17. @include btn-muted.colorize(bs.$gray-500);
  18. }
  19. .dropdown-menu {
  20. min-width: 310px;
  21. .dropdown-header {
  22. margin-bottom: 0.5em;
  23. font-size: 1.1em;
  24. }
  25. // unset active styles
  26. .dropdown-item:active {
  27. color: unset;
  28. background-color: unset;
  29. }
  30. .card {
  31. font-size: 0.7em;
  32. word-break: break-all;
  33. }
  34. }
  35. }
  36. }