Split LESS into more granular files, Vimeo fixes

This commit is contained in:
Sam Potts
2017-10-28 20:14:33 +11:00
parent dd9d5c8898
commit 3d50936b47
36 changed files with 1171 additions and 1055 deletions

View File

@ -0,0 +1,31 @@
// --------------------------------------------------------------
// Fullscreen
// --------------------------------------------------------------
.plyr:fullscreen {
.plyr-fullscreen-active();
}
.plyr:-webkit-full-screen {
.plyr-fullscreen-active();
}
.plyr:-moz-full-screen {
.plyr-fullscreen-active();
}
.plyr:-ms-fullscreen {
.plyr-fullscreen-active();
}
// Fallback for unsupported browsers
.plyr--fullscreen-fallback {
.plyr-fullscreen-active();
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10000000;
}