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
+23
View File
@@ -0,0 +1,23 @@
// --------------------------------------------------------------
// Embedded players
// YouTube, Vimeo, etc
// --------------------------------------------------------------
.plyr__video-embed {
padding-bottom: 56.25%; /* 16:9 */
height: 0;
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
user-select: none;
}
}
// To allow mouse events to be captured if full support
.plyr--full-ui .plyr__video-embed iframe {
pointer-events: none;
}