Fixed Video Z-Index fighting
This commit is contained in:
@ -54,7 +54,9 @@ const AboutPage = (props) => {
|
|||||||
<SplitSection>
|
<SplitSection>
|
||||||
<Split className="u-text-center">
|
<Split className="u-text-center">
|
||||||
<Video
|
<Video
|
||||||
image={ require('./../../images/patterns/arcade.svg') }
|
image={ require('./../../videos/about/programming/programming.png') }
|
||||||
|
mp4={ require('./../../videos/about/programming/programming.mp4') }
|
||||||
|
controls
|
||||||
/>
|
/>
|
||||||
</Split>
|
</Split>
|
||||||
|
|
||||||
|
@ -19,14 +19,17 @@
|
|||||||
object-fit:cover;
|
object-fit:cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
$o-video__loader-z: 1;
|
|
||||||
$o-video__fallback-z: 0;
|
$o-video__fallback-z: 0;
|
||||||
|
$o-video__video-z: 1;
|
||||||
|
$o-video__loader-z: 2;
|
||||||
|
|
||||||
.o-video {
|
.o-video {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
&__video {
|
&__video {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
position: relative;//Needed by some browser to allow the Z-Index to apply
|
||||||
|
z-index: $o-video__video-z;
|
||||||
|
|
||||||
&.is-full {
|
&.is-full {
|
||||||
@extend %o-video__media-cover;
|
@extend %o-video__media-cover;
|
||||||
|
@ -69,7 +69,6 @@ export default class Video extends React.Component {
|
|||||||
|
|
||||||
//React Render
|
//React Render
|
||||||
render() {
|
render() {
|
||||||
//TODO: Add image fallback support.
|
|
||||||
//TODO: Add state support, as well as functional controls.
|
//TODO: Add state support, as well as functional controls.
|
||||||
|
|
||||||
//Sources
|
//Sources
|
||||||
|
Reference in New Issue
Block a user