diff options
author | Sam Potts <sam@potts.es> | 2018-04-17 23:51:23 +1000 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2018-04-17 23:51:23 +1000 |
commit | 119b471b84f8e2a25c61a09c0905d429a475407d (patch) | |
tree | 5c64c7d6b00ab4213d9865d3549771728850911f /src/sass/components/embed.scss | |
parent | 7f079e0ec3abbc9909807a1d9da60e18099a48f0 (diff) | |
download | plyr-119b471b84f8e2a25c61a09c0905d429a475407d.tar.lz plyr-119b471b84f8e2a25c61a09c0905d429a475407d.tar.xz plyr-119b471b84f8e2a25c61a09c0905d429a475407d.zip |
More bug fixes
Diffstat (limited to 'src/sass/components/embed.scss')
-rw-r--r-- | src/sass/components/embed.scss | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/src/sass/components/embed.scss b/src/sass/components/embed.scss index c15ee522..d72836de 100644 --- a/src/sass/components/embed.scss +++ b/src/sass/components/embed.scss @@ -3,14 +3,12 @@ // YouTube, Vimeo, etc // -------------------------------------------------------------- -.plyr__video-embed { - // Default to 16:9 ratio but this is set by JavaScript based on config - $padding: ((100 / 16) * 9); - $height: 240; - $offset: to-percentage(($height - $padding) / ($height / 50)); +// Default to 16:9 ratio but this is set by JavaScript based on config +$embed-padding: ((100 / 16) * 9); +.plyr__video-embed { height: 0; - padding-bottom: to-percentage($padding); + padding-bottom: to-percentage($embed-padding); position: relative; iframe { @@ -22,6 +20,17 @@ user-select: none; width: 100%; } +} + +// If the full custom UI is supported +.plyr--full-ui .plyr__video-embed { + $height: 240; + $offset: to-percentage(($height - $embed-padding) / ($height / 50)); + + // To allow mouse events to be captured if full support + iframe { + pointer-events: none; + } // Vimeo hack > div { @@ -30,7 +39,3 @@ transform: translateY(-$offset); } } -// To allow mouse events to be captured if full support -.plyr--full-ui .plyr__video-embed iframe { - pointer-events: none; -} |