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.

29 lines
598 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. position: absolute;
  11. z-index:9;
  12. &:hover {
  13. max-height: none;
  14. -webkit-mask-image: none;
  15. mask-image: none;
  16. z-index:99;
  17. background: $tc-background;
  18. }
  19. &:active {
  20. max-height: none;
  21. -webkit-mask-image: none;
  22. mask-image: none;
  23. background: $tc-background;
  24. }
  25. }
  26. .comments-timeline__wrapper {
  27. height: 135px;
  28. }