summaryrefslogtreecommitdiffstats
path: root/WebCore/css/fullscreen.css
blob: ebf3a024a7ae29ed115e60a2ccfc75bc26f3cd76 (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
:-webkit-full-screen {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

:root:full-screen-document:not(:full-screen) {
    overflow:hidden;
}

video:-webkit-full-screen {
    width: 100%;
    height: 100%
    image-fit: fill;
}

img:-webkit-full-screen {
    width: 100%;
    height: 100%;
    image-fit: fill;
}

video:-webkit-full-page-media:-webkit-full-screen::-webkit-media-controls-panel {
    bottom: 0px;
}