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.

35 lines
777 B

4 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: none;
  15. -webkit-mask-image: none;
  16. mask-image: none;
  17. z-index:99;
  18. background: $tc-background;
  19. box-shadow: $primary-text-color 3.2px 3.2px 8px;
  20. }
  21. &:active {
  22. max-height: none;
  23. -webkit-mask-image: none;
  24. mask-image: none;
  25. background: $tc-background;
  26. box-shadow: $primary-text-color 3.2px 3.2px 8px;
  27. }
  28. & .comments-timeline-2 {
  29. margin-left:42px;
  30. }
  31. }
  32. .comments-timeline__wrapper {
  33. height: 135px;
  34. }