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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 color: rgb(0, 138, 255); | 95 color: rgb(0, 138, 255); |
96 } | 96 } |
97 | 97 |
98 .display-options-single-button-container { | 98 .display-options-single-button-container { |
99 margin: 5px 0 5px 0; | 99 margin: 5px 0 5px 0; |
100 } | 100 } |
101 | 101 |
102 .display-options-button { | 102 .display-options-button { |
103 width: 120px; | 103 width: 120px; |
104 } | 104 } |
| 105 |
| 106 #display-overscan-calibration-arrow-container { |
| 107 background: transparent; |
| 108 border: none; |
| 109 position: absolute; |
| 110 z-index: 3; |
| 111 } |
| 112 |
| 113 /* The small arrows to denote the overscan calibration mode. The triangular |
| 114 * arrows are achieved by css border. */ |
| 115 .display-overscan-calibration-arrow { |
| 116 border: 10px solid transparent; |
| 117 height: 0; |
| 118 position: absolute; |
| 119 width: 0; |
| 120 } |
| 121 |
| 122 .display-overscan-arrow-to-top { |
| 123 border-bottom-color: rgb(64, 64, 64); |
| 124 } |
| 125 |
| 126 .display-overscan-arrow-to-left { |
| 127 border-right-color: rgb(64, 64, 64); |
| 128 } |
| 129 |
| 130 .display-overscan-arrow-to-bottom { |
| 131 border-top-color: rgb(64, 64, 64); |
| 132 } |
| 133 |
| 134 .display-overscan-arrow-to-right { |
| 135 border-left-color: rgb(64, 64, 64); |
| 136 } |
OLD | NEW |