| 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 { | |
| 24 margin: 20px 0 20px 0; | |
| 25 } | |
| 26 | |
| 27 #display-configurations { | 23 #display-configurations { |
| 28 -webkit-padding-end: 0; | 24 -webkit-padding-end: 0; |
| 29 -webkit-padding-start: 15px; | 25 -webkit-padding-start: 15px; |
| 30 background-color: white; | 26 background-color: white; |
| 31 border-top: 1px solid lightgrey; | 27 border-top: 1px solid lightgrey; |
| 32 padding-bottom: 15px; | 28 padding-bottom: 15px; |
| 33 padding-top: 15px; | 29 padding-top: 15px; |
| 34 } | 30 } |
| 35 | 31 |
| 36 /* The arrow at the border #display-configurations to point the focused display. | 32 /* The arrow at the border #display-configurations to point the focused display. |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 color: rgb(0, 138, 255); | 83 color: rgb(0, 138, 255); |
| 88 } | 84 } |
| 89 | 85 |
| 90 #display-options-toggle-mirroring { | 86 #display-options-toggle-mirroring { |
| 91 margin-right: 5px; | 87 margin-right: 5px; |
| 92 } | 88 } |
| 93 | 89 |
| 94 .display-options-button { | 90 .display-options-button { |
| 95 width: 130px; | 91 width: 130px; |
| 96 } | 92 } |
| OLD | NEW |