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 { | |
49 float: right; | |
50 z-index: 2; | |
51 } | |
52 | |
53 html[dir=rtl] #display-options-buttons-container { | 47 html[dir=rtl] #display-options-buttons-container { |
xiyuan
2013/05/10 22:29:05
Should we remove this as well since we removed #di
Jun Mukai
2013/05/10 23:00:06
Done.
| |
54 float: left; | 48 float: left; |
55 } | 49 } |
56 | 50 |
57 | 51 |
58 #selected-display-data-container { | 52 #selected-display-data-container { |
59 float: left; | |
60 line-height: 200%; | |
61 z-index: 2; | 53 z-index: 2; |
62 } | 54 } |
63 | 55 |
64 html[dir=rtl] #selected-display-data-container { | 56 #selected-display-data-container h2 { |
65 float: right; | 57 font-size: large; |
58 font-weight: normal; | |
59 margin-top: 5px; | |
60 padding: 0; | |
61 } | |
62 | |
63 #selected-display-data-container td { | |
64 padding-right: 10px; | |
66 } | 65 } |
67 | 66 |
68 #selected-display-name { | 67 #selected-display-name { |
69 font-weight: bold; | 68 font-weight: bold; |
70 } | 69 } |
71 | 70 |
72 .displays-display { | 71 .displays-display { |
73 -webkit-user-select: none; | 72 -webkit-user-select: none; |
74 background: rgb(240, 240, 240); | 73 background: rgb(240, 240, 240); |
75 border: solid 1px; | 74 border: solid 1px; |
(...skipping 10 matching lines...) Expand all Loading... | |
86 .displays-focused { | 85 .displays-focused { |
87 border: solid 2px rgb(0, 138, 255); | 86 border: solid 2px rgb(0, 138, 255); |
88 color: rgb(0, 138, 255); | 87 color: rgb(0, 138, 255); |
89 } | 88 } |
90 | 89 |
91 .display-options-single-button-container { | 90 .display-options-single-button-container { |
92 padding: 5px 0; | 91 padding: 5px 0; |
93 } | 92 } |
94 | 93 |
95 .display-options-button { | 94 .display-options-button { |
96 width: 120px; | 95 width: 135px; |
97 } | 96 } |
OLD | NEW |