diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index cb5fbb8be2..cabb871ce8 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -357,6 +357,11 @@ width: 100%; } +.detailTable a { + font-weight: normal!important; + text-decoration: none; +} + .detailTable td { border-spacing: 0; border-top: 1px solid #444; diff --git a/dashboard-ui/thirdparty/video-js-3.2.0/captions.vtt b/dashboard-ui/thirdparty/video-js-3.2.0/captions.vtt new file mode 100644 index 0000000000..e598be1982 --- /dev/null +++ b/dashboard-ui/thirdparty/video-js-3.2.0/captions.vtt @@ -0,0 +1,41 @@ +WEBVTT + +00:00.700 --> 00:04.110 +Captions describe all relevant audio for the hearing impaired. +[ Heroic music playing for a seagull ] + +00:04.500 --> 00:05.000 +[ Splash!!! ] + +00:05.100 --> 00:06.000 +[ Sploosh!!! ] + +00:08.000 --> 00:09.225 +[ Splash...splash...splash splash splash ] + +00:10.525 --> 00:11.255 +[ Splash, Sploosh again ] + +00:13.500 --> 00:14.984 +Dolphin: eeeEEEEEeeee! + +00:14.984 --> 00:16.984 +Dolphin: Squawk! eeeEEE? + +00:25.000 --> 00:28.284 +[ A whole ton of splashes ] + +00:29.500 --> 00:31.000 +Mine. Mine. Mine. + +00:34.300 --> 00:36.000 +Shark: Chomp + +00:36.800 --> 00:37.900 +Shark: CHOMP!!! + +00:37.861 --> 00:41.193 +EEEEEEOOOOOOOOOOWHALENOISE + +00:42.593 --> 00:45.611 +[ BIG SPLASH ] \ No newline at end of file diff --git a/dashboard-ui/thirdparty/video-js-3.2.0/demo.html b/dashboard-ui/thirdparty/video-js-3.2.0/demo.html new file mode 100644 index 0000000000..b35cdc2838 --- /dev/null +++ b/dashboard-ui/thirdparty/video-js-3.2.0/demo.html @@ -0,0 +1,30 @@ + + + + Video.js | HTML5 Video Player + + + + + + + + + + + + + + + + + diff --git a/dashboard-ui/thirdparty/video-js-3.2.0/video-js.css b/dashboard-ui/thirdparty/video-js-3.2.0/video-js.css new file mode 100644 index 0000000000..7956aeee28 --- /dev/null +++ b/dashboard-ui/thirdparty/video-js-3.2.0/video-js.css @@ -0,0 +1,499 @@ +/* +VideoJS Default Styles (http://videojs.com) +Version 3.2.0 +*/ + +/* +REQUIRED STYLES (be careful overriding) +================================================================================ */ +/* When loading the player, the video tag is replaced with a DIV, + that will hold the video tag or object tag for other playback methods. + The div contains the video playback element (Flash or HTML5) and controls, and sets the width and height of the video. + + ** If you want to add some kind of border/padding (e.g. a frame), or special positioning, use another containing element. + Otherwise you risk messing up control positioning and full window mode. ** +*/ +.video-js { + background-color: #000; position: relative; padding: 0; + + /* Start with 10px for base font size so other dimensions can be em based and easily calculable. */ + font-size: 10px; + + /* Allow poster to be vertially aligned. */ + vertical-align: middle; + /* display: table-cell; */ /*This works in Safari but not Firefox.*/ +} + +/* Playback technology elements expand to the width/height of the containing div.