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.
 
 
 
 

28 lines
580 B

.comments_timeline {
height: 160px;
overflow: hidden;
-webkit-mask-image: linear-gradient(#1a1a1a,transparent);
mask-image: linear-gradient(#1a1a1a,transparent);
transform: scale(0.85);
transform-origin: 100% 0%;
margin-bottom: -32px;
position: relative;
z-index:99;
&:hover {
overflow: visible;
-webkit-mask-image: none;
mask-image: none;
> div {
background: lighten($ui-base-color, 5%);
}
}
&:active {
overflow: visible;
-webkit-mask-image: none;
mask-image: none;
> div {
background: lighten($ui-base-color, 5%);
}
}
}