Button positioning

This commit is contained in:
Kasper Rynning-Tønnesen
2016-11-18 20:41:30 +01:00
parent 4a53bc4a85
commit 4c90e62569
4 changed files with 11 additions and 5 deletions

View File

@@ -1137,6 +1137,12 @@ ul #chat-log{
font-size:18px;
}
.castButton-active, .castButton-active:active, .castButton-active:hover, .castButton-active:focus{
font-size: 5rem;
margin-top: -70px;
margin-right: 52%;
}
.chat-link{
-webkit-transition:color 1s;
-moz-transition:color 1s;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -71,14 +71,14 @@ var Player = {
{
Player.loadVideoById(video_id);
Player.notifyUser(video_id, song_title);
if(!chromecastAvailable) Player.seekTo(seekTo);
Player.seekTo(seekTo);
if(paused)
Player.pauseVideo();
}
if(!paused){
if(!mobile_beginning)
if(!chromecastAvailable)Player.playVideo();
if(!chromecastAvailable && !durationBegun)
Player.playVideo();
if(!durationBegun)
Player.durationSetter();
}
if(Player.player.getDuration() > seekTo || Player.player.getDuration() === 0 || chromecastAvailable)