1
0
mirror of https://github.com/videojs/video.js.git synced 2025-02-16 12:23:54 +02:00

@incompl improved the UX of time tooltips. closes #3060

This commit is contained in:
Greg Smith 2016-02-02 14:32:19 -05:00 committed by Gary Katsevman
parent c8646aa02b
commit 2f0b9ee8ca
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ CHANGELOG
## HEAD (Unreleased)
* @forbesjo updated emulated tracks to have listeners removed when they are removed ([view](https://github.com/videojs/video.js/pull/3046))
* @incompl improved the UX of time tooltips ([view](https://github.com/videojs/video.js/pull/3060))
--------------------

View File

@ -86,12 +86,12 @@
.video-js .vjs-play-progress:after {
display: none;
position: absolute;
top: -2.4em;
top: -3.4em;
right: -1.5em;
font-size: 0.9em;
color: #000;
content: attr(data-current-time);
padding: 0.2em 0.5em;
padding: 6px 8px 8px 8px;
@include background-color-with-alpha(#fff, 0.8);
@include border-radius(0.3em);
}