Fix embed button outline

This commit is contained in:
Chocobozzz 2018-01-19 09:15:42 +01:00
parent 0edf0581a9
commit adcaf1a867
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 13 additions and 1 deletions

View File

@ -37,6 +37,11 @@ $control-bar-height: 34px;
margin-left: -($big-play-width / 2); margin-left: -($big-play-width / 2);
margin-top: -($big-play-height / 2); margin-top: -($big-play-height / 2);
background-color: transparent !important; background-color: transparent !important;
&::-moz-focus-inner {
border: 0;
padding: 0
}
} }
&.vjs-has-started .vjs-big-play-button { &.vjs-has-started .vjs-big-play-button {

View File

@ -1,3 +1,5 @@
/* tslint:disable:no-unused-expression */
import 'mocha' import 'mocha'
import * as chai from 'chai' import * as chai from 'chai'
const expect = chai.expect const expect = chai.expect
@ -66,7 +68,12 @@ describe('Test update host scripts', function () {
expect(file.magnetUri).to.contain('localhost%3A9002%2Fstatic%2Fwebseed%2F') expect(file.magnetUri).to.contain('localhost%3A9002%2Fstatic%2Fwebseed%2F')
const torrent = await parseTorrentVideo(server, videoDetails.uuid, file.resolution) const torrent = await parseTorrentVideo(server, videoDetails.uuid, file.resolution)
expect(torrent.announce[0]).to.equal('ws://localhost:9002/tracker/socket') const announceWS = torrent.announce.find(a => a === 'ws://localhost:9002/tracker/socket')
expect(announceWS).to.not.be.undefined
const announceHttp = torrent.announce.find(a => a === 'http://localhost:9002/tracker/announce')
expect(announceHttp).to.not.be.undefined
expect(torrent.urlList[0]).to.contain('http://localhost:9002/static/webseed') expect(torrent.urlList[0]).to.contain('http://localhost:9002/static/webseed')
} }
} }