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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 66 | 66 |
| 67 .selected-display-option-row { | 67 .selected-display-option-row { |
| 68 margin-top: 10px; | 68 margin-top: 10px; |
| 69 } | 69 } |
| 70 | 70 |
| 71 .selected-display-option-title { | 71 .selected-display-option-title { |
| 72 display: inline-block; | 72 display: inline-block; |
| 73 margin-right: 10px; | 73 margin-right: 10px; |
| 74 } | 74 } |
| 75 | 75 |
| 76 .xxx { | |
|
xiyuan
2015/05/20 20:17:52
Is this needed?
| |
| 77 display: inline-block; | |
| 78 } | |
| 79 | |
| 76 .displays-display { | 80 .displays-display { |
| 77 -webkit-user-select: none; | 81 -webkit-user-select: none; |
| 78 background: rgb(240, 240, 240); | 82 background: rgb(240, 240, 240); |
| 79 border: solid 1px; | 83 border: solid 1px; |
| 80 box-sizing: border-box; | 84 box-sizing: border-box; |
| 81 font-weight: bold; | 85 font-weight: bold; |
| 82 position: absolute; | 86 position: absolute; |
| 83 text-align: center; | 87 text-align: center; |
| 84 z-index: 2; | 88 z-index: 2; |
| 85 } | 89 } |
| 86 | 90 |
| 87 .display-mirrored { | 91 .display-mirrored { |
| 88 border: solid 1px; | 92 border: solid 1px; |
| 89 } | 93 } |
| 90 | 94 |
| 91 .displays-focused { | 95 .displays-focused { |
| 92 border: solid 2px rgb(0, 138, 255); | 96 border: solid 2px rgb(0, 138, 255); |
| 93 color: rgb(0, 138, 255); | 97 color: rgb(0, 138, 255); |
| 94 } | 98 } |
| 95 | 99 |
| 96 #display-options-toggle-mirroring { | 100 #display-options-toggle-mirroring { |
| 97 margin-right: 5px; | 101 margin-right: 5px; |
| 98 } | 102 } |
| 99 | 103 |
| 100 .display-options-button { | 104 .display-options-button { |
| 101 width: 130px; | 105 width: 130px; |
| 102 } | 106 } |
| 107 | |
| 108 .controlled-setting-with-label, | |
|
xiyuan
2015/05/20 20:17:51
This line has side effect because it applies to al
| |
| 109 .display-options-toggle-unified-desktop-label { | |
| 110 display: inline-block; | |
| 111 } | |
| OLD | NEW |