summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/css/fullscreen.css
blob: 537024c529790d0a3de9c003e57512f9aa3d1509 (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 {
    background-color: white;
}

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

video:-webkit-full-screen {
    background-color: black !important;
    position: static !important;
    margin: 0 !important;
    height: 100% !important;
    width: 100% !important;
    -webkit-box-flex: 1 !important;
    display: block !important;
}

img:-webkit-full-screen {
    width: auto;   
    height: 100%;
    max-width: 100%;
}

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