OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 #display-options-page { | 5 #display-options-page { |
6 background-color: rgb(240, 240, 240); | 6 background-color: rgb(240, 240, 240); |
7 } | 7 } |
8 | 8 |
9 #display-options-content-area { | 9 #display-options-content-area { |
10 padding: 0; | 10 padding: 0; |
11 } | 11 } |
12 | 12 |
13 #display-options-displays-view-host { | 13 #display-options-displays-view-host { |
14 padding: 20px 0 20px 0; | 14 padding: 20px 0 20px 0; |
15 } | 15 } |
16 | 16 |
17 #display-options-displays-view { | 17 #display-options-displays-view { |
18 overflow: hidden; | 18 overflow: hidden; |
19 position: relative; | 19 position: relative; |
20 width: 100%; | 20 width: 100%; |
21 } | 21 } |
22 | 22 |
23 #display-options-displays-view-mirroring { | 23 #display-options-displays-view-mirroring { |
24 margin: 20px 0 20px 0; | 24 margin: 20px 0 20px 0; |
25 } | 25 } |
26 | 26 |
27 #display-configurations { | 27 #display-configurations { |
28 background-color: white; | 28 background-color: white; |
29 border-top: 1px solid lightgrey; | 29 border-top: 1px solid lightgrey; |
30 height: 65px; | |
31 padding: 15px; | 30 padding: 15px; |
32 } | 31 } |
33 | 32 |
34 /* The arrow at the border #display-configurations to point the focused display. | 33 /* The arrow at the border #display-configurations to point the focused display. |
35 * This is achieved by a square rotated by 45-deg, and it has border at the | 34 * This is achieved by a square rotated by 45-deg, and it has border at the |
36 * upper-half, which were left/top before the rotation. */ | 35 * upper-half, which were left/top before the rotation. */ |
37 #display-configuration-arrow { | 36 #display-configuration-arrow { |
38 -webkit-transform: rotate(45deg); | 37 -webkit-transform: rotate(45deg); |
39 background-color: white; | 38 background-color: white; |
40 border-left: 1px solid lightgrey; | 39 border-left: 1px solid lightgrey; |
41 border-top: 1px solid lightgrey; | 40 border-top: 1px solid lightgrey; |
42 height: 20px; | 41 height: 20px; |
43 position: absolute; | 42 position: absolute; |
44 width: 20px; | 43 width: 20px; |
45 z-index: 1; | 44 z-index: 1; |
46 } | 45 } |
47 | 46 |
48 #display-options-buttons-container { | 47 #selected-display-data-container { |
49 float: right; | |
50 z-index: 2; | 48 z-index: 2; |
51 } | 49 } |
52 | 50 |
53 html[dir=rtl] #display-options-buttons-container { | 51 #selected-display-name { |
54 float: left; | 52 font-size: large; |
| 53 font-weight: normal; |
| 54 margin-bottom: 10px; |
| 55 margin-top: 5px; |
| 56 padding: 0; |
55 } | 57 } |
56 | 58 |
57 | 59 .selected-display-option-title { |
58 #selected-display-data-container { | 60 display: inline-block; |
59 float: left; | 61 margin-right: 10px; |
60 line-height: 200%; | |
61 z-index: 2; | |
62 } | |
63 | |
64 html[dir=rtl] #selected-display-data-container { | |
65 float: right; | |
66 } | |
67 | |
68 #selected-display-name { | |
69 font-weight: bold; | |
70 } | 62 } |
71 | 63 |
72 .displays-display { | 64 .displays-display { |
73 -webkit-user-select: none; | 65 -webkit-user-select: none; |
74 background: rgb(240, 240, 240); | 66 background: rgb(240, 240, 240); |
75 border: solid 1px; | 67 border: solid 1px; |
76 font-weight: bold; | 68 font-weight: bold; |
77 position: absolute; | 69 position: absolute; |
78 text-align: center; | 70 text-align: center; |
79 z-index: 2; | 71 z-index: 2; |
80 } | 72 } |
81 | 73 |
82 .display-mirrored { | 74 .display-mirrored { |
83 border: solid 1px; | 75 border: solid 1px; |
84 } | 76 } |
85 | 77 |
86 .displays-focused { | 78 .displays-focused { |
87 border: solid 2px rgb(0, 138, 255); | 79 border: solid 2px rgb(0, 138, 255); |
88 color: rgb(0, 138, 255); | 80 color: rgb(0, 138, 255); |
89 } | 81 } |
90 | 82 |
91 .display-options-single-button-container { | 83 .display-options-button-container { |
92 padding: 5px 0; | 84 margin-right: 10px; |
93 } | 85 } |
94 | 86 |
95 .display-options-button { | 87 .display-options-button { |
96 width: 120px; | 88 width: 135px; |
97 } | 89 } |
OLD | NEW |