Chromium Code Reviews| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 70 } | 70 } |
| 71 | 71 |
| 72 #display-launcher { | 72 #display-launcher { |
| 73 background-color: lightgrey; | 73 background-color: lightgrey; |
| 74 bottom: 0; | 74 bottom: 0; |
| 75 height: 10px; | 75 height: 10px; |
| 76 position: absolute; | 76 position: absolute; |
| 77 } | 77 } |
| 78 | 78 |
| 79 .displays-display { | 79 .displays-display { |
| 80 -webkit-user-select: none; | |
| 80 background: rgb(240, 240, 240); | 81 background: rgb(240, 240, 240); |
| 81 border: solid 1px; | 82 border: solid 1px; |
| 82 font-weight: bold; | 83 font-weight: bold; |
| 83 position: absolute; | 84 position: absolute; |
| 84 text-align: center; | 85 text-align: center; |
| 85 z-index: 2; | 86 z-index: 2; |
| 86 } | 87 } |
| 87 | 88 |
| 88 .display-mirrored { | 89 .display-mirrored { |
| 89 border: dashed 1px; | 90 border: solid 1px; |
| 90 } | 91 } |
| 91 | 92 |
| 92 .displays-focused { | 93 .displays-focused { |
| 93 border: solid 2px rgb(0, 138, 255); | 94 border: solid 2px rgb(0, 138, 255); |
| 94 color: rgb(0, 138, 255); | 95 color: rgb(0, 138, 255); |
| 95 } | 96 } |
| 96 | 97 |
| 97 .display-options-single-button-container { | 98 .display-options-single-button-container { |
| 98 margin: 5px 0 5px 0; | 99 padding: 5px 0 5px 0; |
|
xiyuan
2012/11/30 23:19:59
nit: padding: 5px 0;
Jun Mukai
2012/11/30 23:22:50
Done.
| |
| 99 } | 100 } |
| 100 | 101 |
| 101 .display-options-button { | 102 .display-options-button { |
| 102 width: 120px; | 103 width: 120px; |
| 103 } | 104 } |
| 104 | 105 |
| 105 #display-overscan-calibration-arrow-container { | 106 #display-overscan-calibration-arrow-container { |
| 106 background: transparent; | 107 background: transparent; |
| 107 border: none; | 108 border: none; |
| 108 position: absolute; | 109 position: absolute; |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 126 border-right-color: rgb(64, 64, 64); | 127 border-right-color: rgb(64, 64, 64); |
| 127 } | 128 } |
| 128 | 129 |
| 129 .display-overscan-arrow-to-bottom { | 130 .display-overscan-arrow-to-bottom { |
| 130 border-top-color: rgb(64, 64, 64); | 131 border-top-color: rgb(64, 64, 64); |
| 131 } | 132 } |
| 132 | 133 |
| 133 .display-overscan-arrow-to-right { | 134 .display-overscan-arrow-to-right { |
| 134 border-left-color: rgb(64, 64, 64); | 135 border-left-color: rgb(64, 64, 64); |
| 135 } | 136 } |
| OLD | NEW |