RecentChangesSubstance.module.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. @use '~/styles/mixins' as *;
  2. .grw-recent-changes-resize-button :global {
  3. line-height: normal;
  4. transform: translateY(-2px);
  5. .form-check-label::before {
  6. padding-left: 5px;
  7. content: 'L';
  8. }
  9. .form-check-input:checked + .form-check-label::before {
  10. padding-left: 5px;
  11. content: 'S';
  12. }
  13. }
  14. .list-group-item :global {
  15. font-size: 12px;
  16. .grw-recent-changes-skeleton-small {
  17. @include grw-skeleton-text($font-size:14px, $line-height:16px);
  18. max-width: 120px;
  19. }
  20. .grw-recent-changes-skeleton-h5 {
  21. @include grw-skeleton-h5;
  22. max-width: 120px;
  23. }
  24. .grw-recent-changes-skeleton-date {
  25. @include grw-skeleton-text($font-size:10px, $line-height:12px);
  26. width: 80px;
  27. }
  28. // For truncate-text
  29. .flex-grow-1 {
  30. min-width: 0;
  31. }
  32. .truncate-text {
  33. max-width: fit-content;
  34. }
  35. }
  36. .grw-recent-changes-item-lower :global {
  37. font-size: 12px;
  38. .material-symbols-outlined {
  39. font-size: 14px;
  40. }
  41. .grw-formatted-distance-date {
  42. font-size: 10px;
  43. }
  44. }
  45. // == Colors
  46. .grw-former-link a {
  47. --bs-link-opacity: .5;
  48. &:global {
  49. &:hover {
  50. --bs-link-opacity: 1;
  51. }
  52. }
  53. }
  54. .grw-recent-changes-item-lower :global {
  55. color: var(--bs-gray-500);
  56. }