Update the poster selection to be smoother

This commit is contained in:
Grégoire Delattre 2017-06-05 16:29:35 +02:00
parent e9138ab303
commit de42615383

View File

@ -8,8 +8,14 @@ body {
}
.thumbnail-selected {
border-color: @brand-primary;
background-color: @brand-primary;
transition: border 400ms ease-in-out;
animation-name: select-thumbnail;
animation-duration: 400ms;
animation-fill-mode: forwards;
}
@keyframes select-thumbnail {
0% { background-color: @gray-light; }
100% { background-color: @brand-primary; }
}
.clickable {