Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_videoplayer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-01-15 17:53:17 +0300
committerGitHub <noreply@github.com>2019-01-15 17:53:17 +0300
commit3c5bb919fd4d016033d2383efb37c75f46ff6c29 (patch)
tree8a174c7744a31f252fd94ebf533b1fcc5f786974
parent823361a859ea2a327343260af73c14e6f84be07b (diff)
parent1cbc2ba45b6515f4e950b37ccea248557c6713ef (diff)
Merge pull request #79 from nextcloud/backport/78/stable15v15.0.5RC2v15.0.5RC1v15.0.5v15.0.4v15.0.3RC1v15.0.3
[stable15] Fill screen in fullscreen mode for public videos. Fixes #77
-rwxr-xr-xcss/style.css8
1 files changed, 7 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css
index b21e8ae..cec3b3b 100755
--- a/css/style.css
+++ b/css/style.css
@@ -102,9 +102,15 @@
height: auto;
}
+/* fullscreen public videos see https://github.com/nextcloud/files_videoplayer/issues/77 */
+#imgframe .video-js.vjs-fullscreen .vjs-tech {
+ width:100%;
+ height:100%;
+}
+
#imgframe .video-js:not(.vjs-fullscreen),
#imgframe .video-js:not(.vjs-fullscreen) .vjs-tech {
max-height: calc(100vh - 280px) !important;
min-width: 300px;
max-width: 100% !important;
-} \ No newline at end of file
+}