RecentChanges.module.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @use '~/styles/mixins' as *;
  2. .grw-recent-changes-resize-button :global {
  3. font-size: 12px;
  4. line-height: normal;
  5. transform: translateY(-2px);
  6. .custom-control-label::before {
  7. padding-left: 19px;
  8. content: 'L';
  9. }
  10. .custom-control-input:checked + .custom-control-label::before {
  11. padding-left: 5px;
  12. content: 'S';
  13. }
  14. }
  15. .list-group-item :global {
  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. .grw-recent-changes-item-lower {
  29. height: 17.5px;
  30. }
  31. .footstamp-icon {
  32. svg {
  33. width: 14px;
  34. height: 14px;
  35. transform: translateY(-3.5px);
  36. }
  37. }
  38. .grw-list-counts {
  39. height: 14px;
  40. font-size: 12px;
  41. }
  42. .grw-formatted-distance-date {
  43. font-size: 10px;
  44. }
  45. .icon-lock {
  46. font-size: 14px;
  47. }
  48. // For truncate-text
  49. .flex-grow-1 {
  50. min-width: 0;
  51. }
  52. .truncate-text {
  53. max-width: fit-content;
  54. }
  55. }