mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-26 17:46:26 +03:00
a3ccf837d6
The thumbnail sometimes stuck (would not disappear) when mouse cursor hovers over it (not over seek bar) Steps to reproduce: - Get local demo running (python build/all.py --debug?) - Find a video with thumbnail to play Bug reproduction https://github.com/user-attachments/assets/d0212307-7d12-41e0-af22-c111f019cae8 Reported in https://github.com/FreeTubeApp/FreeTube/issues/5965 Fix from https://github.com/FreeTubeApp/FreeTube/pull/6812
41 lines
826 B
Plaintext
41 lines
826 B
Plaintext
#shaka-player-ui-thumbnail-container {
|
|
background-color: black;
|
|
border: 1px solid black;
|
|
box-shadow: 0 8px 8px 0 rgb(0, 0, 0, 50%);
|
|
min-width: 150px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
visibility: hidden;
|
|
width: 15%;
|
|
z-index: 1;
|
|
pointer-events: none;
|
|
|
|
#shaka-player-ui-thumbnail-image {
|
|
position: absolute;
|
|
}
|
|
|
|
#shaka-player-ui-thumbnail-time {
|
|
background-color: rgb(0, 0, 0, 50%);
|
|
bottom: 0;
|
|
color: white;
|
|
font-size: 16px;
|
|
left: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
#shaka-player-ui-time-container {
|
|
background-color: white;
|
|
border: 1px solid black;
|
|
border-radius: 10px;
|
|
box-shadow: 0 8px 8px 0 rgb(0, 0, 0, 50%);
|
|
color: black;
|
|
overflow: hidden;
|
|
padding: 1px 7px;
|
|
position: absolute;
|
|
visibility: hidden;
|
|
z-index: 1;
|
|
}
|