From c79bbf739d6033071861c7cad2f2c9509ccd5ef5 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Wed, 6 Jun 2018 08:01:21 +1000 Subject: [PATCH] Adjusted video styles --- public/styles/objects/_video.scss | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/public/styles/objects/_video.scss b/public/styles/objects/_video.scss index fca5d8e..637a47d 100644 --- a/public/styles/objects/_video.scss +++ b/public/styles/objects/_video.scss @@ -10,23 +10,36 @@ * Version: * 1.0.0 - 2018/05/07 */ +%o-video__media-cover { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + object-fit:cover; +} + +$o-video__loader-z: 1; +$o-video__fallback-z: 0; + .o-video { position: relative; &__video { + width: 100%; &.is-full { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - object-fit:cover; + @extend %o-video__media-cover; + } } &__image { - position: absolute; + @extend %o-video__media-cover; + z-index: $o-video__fallback-z; + } + &__loader { + z-index: $o-video__loader-z; } }