aboutsummaryrefslogtreecommitdiffstats
path: root/src/sass/components/embed.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/sass/components/embed.scss')
-rw-r--r--src/sass/components/embed.scss25
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;
-}