1/*
2 * Copyright (C) 2012 Samsung Electronics
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 *    notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 *    notice, this list of conditions and the following disclaimer in the
11 *    documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
20 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
22 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25/* EFLWebKit media controls for fullscreen. */
26
27video:-webkit-full-screen:-webkit-full-page-media::-webkit-media-controls-panel {
28    display: none;
29}
30
31video:-webkit-full-screen::-webkit-media-controls-mute-button {
32    display: none;
33}
34
35video:-webkit-full-screen::-webkit-media-controls-time-remaining-display {
36    display: none;
37}
38
39video:-webkit-full-screen::-webkit-media-controls-volume-slider-container {
40    -webkit-appearance: media-volume-slider-container;
41    display: none;
42}
43
44video:-webkit-full-screen::-webkit-media-controls-volume-slider {
45    -webkit-appearance: media-volume-slider;
46    display: none;
47}
48
49video:-webkit-full-screen::-webkit-media-controls-seek-back-button {
50    display: none;
51}
52
53video:-webkit-full-screen::-webkit-media-controls-seek-forward-button {
54    display: none;
55}
56
57video:-webkit-full-screen::-webkit-media-controls-rewind-button {
58    display: none;
59}
60
61video:-webkit-full-screen::-webkit-media-controls-return-to-realtime-button {
62    display: none;
63}
64
65video:-webkit-full-screen::-webkit-media-controls-toggle-closed-captions-button {
66    display: none;
67}
68