wgo.js icon indicating copy to clipboard operation
wgo.js copied to clipboard

Fix display on mobile.

Open Dorus opened this issue 7 years ago • 0 comments

See https://github.com/gcp/leela-zero/issues/412#issuecomment-353960893

If black passes, you need to scroll at the bottom to see the result.

Before scroll:

2017-12-26 12 56 46

After scroll:

2017-12-26 13 00 46

There are 2 problems with the CSS:

wgo.player.css:375

.wgo-player-top .wgo-comments-content, .wgo-player-bottom .wgo-comments-content {
    position: absolute;
}

Here "absolute" should be "relative".

wgo.player.css:394

.wgo-player-top .wgo-comments-wrapper, .wgo-player-bottom .wgo-comments-wrapper {
    height: 150px;
}

Here should be no height indication.

Dorus avatar Dec 26 '17 15:12 Dorus