blob: 3a09e408e1214c0cb067ffc8d00bb85d80bb70e4 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
#display-overscan-content-area {
margin: 20px;
padding: 0;
}
#display-overscan-operations-table {
position: absolute;
width: 100%;
}
#display-overscan-operations-table td {
font-size: 12px;
text-align: center;
width: 50%;
}
.display-overscan-operation-image {
padding-bottom: 30px;
}
#display-overscan-operation-images-row {
vertical-align: middle;
}
#display-overscan-operation-arrows {
background-image: -webkit-image-set(
url('overscan_arrows.png') 1x,
url('overscan_arrows_2x.png') 2x);
background-position: center;
background-repeat: no-repeat;
height: 51px;
width: 100%;
}
#display-overscan-operation-shift {
background-image: -webkit-image-set(
url('overscan_shift.png') 1x,
url('overscan_shift_2x.png') 2x);
background-position: center;
background-repeat: no-repeat;
height: 23px;
width: 100%;
}
html[dir=rtl] #display-overscan-operation-shift {
background-image: -webkit-image-set(
url('overscan_shift_rtl.png') 1x,
url('overscan_shift_rtl_2x.png') 2x);
}
#display-overscan-button-strip {
bottom: 0;
position: absolute;
width: 100%;
}
#display-overscan-buttons-spacer {
-webkit-box-flex: 1;
}
|