aboutsummaryrefslogtreecommitdiffstats
path: root/src/less/components/embed.less
blob: dcf889b7d54911d2ecdc8b0b3254f6419bac91d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// --------------------------------------------------------------
// Embedded players
// YouTube, Vimeo, etc
// --------------------------------------------------------------

.plyr__video-embed {
    // Default to 16:9 ratio but this is set by JavaScript based on config
    @padding: ((100 / 16) * 9);
    @offset: unit((100 - @padding) / 2, ~'%');

    padding-bottom: unit(@padding, ~'%');
    height: 0;

    iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        user-select: none;
    }

    // Vimeo hack
    > div {
        position: relative;
        padding-bottom: 100%;
        transform: translateY(-@offset);
    }
}
// To allow mouse events to be captured if full support
.plyr--full-ui .plyr__video-embed iframe {
    pointer-events: none;
}