Fix display for current language on change

This commit is contained in:
Sam Potts
2017-11-25 01:19:16 +11:00
parent cda574e627
commit fd77831303
9 changed files with 35 additions and 26 deletions

View File

@ -16,6 +16,7 @@
padding: @plyr-control-spacing;
transform: translateY(-(@plyr-control-spacing * 4));
transition: transform 0.4s ease-in-out;
animation: plyr-fade-in 0.3s ease;
color: @plyr-captions-color;
font-size: @plyr-font-size-captions-small;
text-align: center;

View File

@ -19,3 +19,13 @@
opacity: 1;
}
}
@keyframes plyr-fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}