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; |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 } | 62 } |
63 | 63 |
64 html[dir=rtl] #selected-display-data-container { | 64 html[dir=rtl] #selected-display-data-container { |
65 float: right; | 65 float: right; |
66 } | 66 } |
67 | 67 |
68 #selected-display-name { | 68 #selected-display-name { |
69 font-weight: bold; | 69 font-weight: bold; |
70 } | 70 } |
71 | 71 |
72 #display-launcher { | |
73 background-color: lightgrey; | |
74 bottom: 0; | |
75 height: 10px; | |
76 position: absolute; | |
77 } | |
78 | |
79 .displays-display { | 72 .displays-display { |
80 -webkit-user-select: none; | 73 -webkit-user-select: none; |
81 background: rgb(240, 240, 240); | 74 background: rgb(240, 240, 240); |
82 border: solid 1px; | 75 border: solid 1px; |
83 font-weight: bold; | 76 font-weight: bold; |
84 position: absolute; | 77 position: absolute; |
85 text-align: center; | 78 text-align: center; |
86 z-index: 2; | 79 z-index: 2; |
87 } | 80 } |
88 | 81 |
89 .display-mirrored { | 82 .display-mirrored { |
90 border: solid 1px; | 83 border: solid 1px; |
91 } | 84 } |
92 | 85 |
93 .displays-focused { | 86 .displays-focused { |
94 border: solid 2px rgb(0, 138, 255); | 87 border: solid 2px rgb(0, 138, 255); |
95 color: rgb(0, 138, 255); | 88 color: rgb(0, 138, 255); |
96 } | 89 } |
97 | 90 |
98 .display-options-single-button-container { | 91 .display-options-single-button-container { |
99 padding: 5px 0; | 92 padding: 5px 0; |
100 } | 93 } |
101 | 94 |
102 .display-options-button { | 95 .display-options-button { |
103 width: 120px; | 96 width: 120px; |
104 } | 97 } |
OLD | NEW |