You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
858 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. .comments-timeline {
  2. max-height: 160px;
  3. min-width: 60%;
  4. overflow: hidden;
  5. -webkit-mask-image: linear-gradient(#1a1a1a,transparent);
  6. mask-image: linear-gradient(#1a1a1a,transparent);
  7. transform: scale(0.85);
  8. transform-origin: 100% 0%;
  9. margin-bottom: -32px;
  10. margin-right:8px;
  11. position: absolute;
  12. z-index:9;
  13. &:hover {
  14. max-height: 60vh;
  15. overflow-y: auto;
  16. -webkit-mask-image: none;
  17. mask-image: none;
  18. z-index:99;
  19. background: $tc-background;
  20. box-shadow: $primary-text-color 3.2px 3.2px 8px;
  21. }
  22. &:active {
  23. max-height: 60vh;
  24. overflow-y: auto;
  25. -webkit-mask-image: none;
  26. mask-image: none;
  27. z-index:99;
  28. background: $tc-background;
  29. box-shadow: $primary-text-color 3.2px 3.2px 8px;
  30. }
  31. & .comments-timeline-2 {
  32. margin-left:42px;
  33. }
  34. }
  35. .comments-timeline__wrapper {
  36. height: 135px;
  37. }