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.

20 lines
414 B

  1. .comments_timeline {
  2. max-height: 160px;
  3. overflow: hidden;
  4. -webkit-mask-image: linear-gradient(#1a1a1a,transparent);
  5. mask-image: linear-gradient(#1a1a1a,transparent);
  6. transform: scale(0.85);
  7. transform-origin: 80% 0%;
  8. padding-bottom: -32px;
  9. &:hover {
  10. max-height: none;
  11. -webkit-mask-image: none;
  12. mask-image: none;
  13. }
  14. &:active {
  15. max-height: none;
  16. -webkit-mask-image: none;
  17. mask-image: none;
  18. }
  19. }