Removed not that beautiful progressbar animations. fixes #90

This commit is contained in:
emeric
2020-08-28 00:00:08 +02:00
parent 5e37ec865a
commit e96727a94d
3 changed files with 5 additions and 3 deletions
+4
View File
@@ -362,6 +362,10 @@ a.Lms-artistname:hover, a.Lms-artistname:focus {
background-color: var(--slider-background-color);
}
.Lms-player-progress .progress-bar {
transition: none;
}
.Lms-player-seek {
cursor: pointer;
z-index: 1;
-2
View File
@@ -31,12 +31,10 @@ LMS.mediaplayer = function () {
if (_elems.audio.paused) {
_elems.playpause.classList.remove("fa-pause");
_elems.playpause.classList.add("fa-play");
_elems.progress.classList.remove("active");
}
else {
_elems.playpause.classList.remove("fa-play");
_elems.playpause.classList.add("fa-pause");
_elems.progress.classList.add("active");
}
}