Supervised user whitelists: Cleanup
[chromium-blink-merge.git] / ui / file_manager / video_player / css / arrow_box.css
blob82bc5afeba15d7a618ba3ef4b7c8cb8a59b8b51e
1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
5 #video-player .arrow-box {
6 align-items: center;
7 display: flex;
8 height: 100%;
9 justify-content: center;
10 pointer-events: none;
11 position: absolute;
12 width: 100%;
13 z-index: 100;
16 #video-player .arrow-box .arrow-spacer {
17 flex-grow: 1;
20 #video-player[tools] .arrow-box .arrow {
21 pointer-events: auto;
24 /* The arrow icons are in nested divs so that their opacity can be manipulated
25 * independently from their parent (which can be dimmed when the crop frame
26 * overlaps it) */
27 #video-player .arrow div {
28 background-position: center center;
29 background-repeat: no-repeat;
30 height: 193px;
31 opacity: 0;
32 width: 105px;
35 #video-player[multiple] .arrow-box .arrow div {
36 opacity: 0.25;
39 #video-player[multiple] .arrow-box .arrow div:hover {
40 opacity: 1;
43 #video-player:not([first-video]) .arrow.left div {
44 cursor: pointer;
45 background-image: -webkit-image-set(
46 url(../images/100/arrow_left.png) 1x,
47 url(../images/200/arrow_left.png) 2x);
50 #video-player:not([last-video]) .arrow.right div {
51 cursor: pointer;
52 background-image: -webkit-image-set(
53 url(../images/100/arrow_right.png) 1x,
54 url(../images/200/arrow_right.png) 2x);