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 { | |
| 6 background-color: #f0f0f0; | |
| 7 } | |
| 8 | |
| 9 #display-options-content-area { | |
| 10 padding: 0; | |
| 11 } | |
| 12 | |
| 5 #display-options-displays-view-host { | 13 #display-options-displays-view-host { |
| 6 padding: 20px; | 14 padding: 20px; |
| 7 } | 15 } |
| 8 | 16 |
| 9 #display-options-displays-view { | 17 #display-options-displays-view { |
| 10 height: 300px; | 18 height: 300px; |
| 11 position: relative; | 19 position: relative; |
| 12 } | 20 } |
| 13 | 21 |
| 14 #display-configurations { | 22 #display-configurations { |
| 15 border-top: 1px solid blue; | 23 background-color: white; |
| 16 padding-top: 20px; | 24 border-top: 1px solid lightgrey; |
| 17 text-align: right; | 25 height: 65px; |
| 26 padding-bottom: 15px; | |
|
James Hawkins
2012/08/03 18:08:23
nit: Use shorthand notation.
Jun Mukai
2012/08/06 08:07:32
Done.
| |
| 27 padding-left: 15px; | |
| 28 padding-right: 15px; | |
| 29 padding-top: 15px; | |
| 30 position: relative; | |
| 31 } | |
| 32 | |
| 33 #display-configuration-arrow { | |
| 34 -webkit-transform: rotate(45deg); | |
| 35 background-color: white; | |
| 36 border-left: 1px solid lightgrey; | |
|
James Hawkins
2012/08/03 18:08:23
RTL
Jun Mukai
2012/08/06 08:07:32
This isn't relevant to RTL, 45deg-rotated div's le
| |
| 37 border-top: 1px solid lightgrey; | |
| 38 height: 20px; | |
| 39 position: absolute; | |
| 40 width: 20px; | |
| 41 z-index: 1; | |
| 42 } | |
| 43 | |
| 44 #display-options-buttons-container { | |
| 45 position: absolute; | |
| 46 right: 15px; | |
|
James Hawkins
2012/08/03 18:08:23
RTL
Jun Mukai
2012/08/06 08:07:32
Done.
| |
| 47 top: 15px; | |
| 48 z-index: 2; | |
| 49 } | |
| 50 | |
| 51 #selected-display-data-container { | |
| 52 line-height: 200%; | |
| 53 z-index: 2; | |
| 54 } | |
| 55 | |
| 56 #selected-display-name { | |
| 57 font-weight: bold; | |
| 58 } | |
| 59 | |
| 60 #display-launcher { | |
| 61 background-color: lightgrey; | |
| 62 bottom: 0; | |
| 63 height: 10px; | |
| 64 position: absolute; | |
| 18 } | 65 } |
| 19 | 66 |
| 20 .displays-display { | 67 .displays-display { |
| 21 background-color: white; | 68 background: #f0f0f0; |
| 22 border: dashed 1px; | 69 border: solid 1px; |
| 70 font-weight: bold; | |
| 23 position: absolute; | 71 position: absolute; |
| 24 text-align: center; | 72 text-align: center; |
| 25 vertical-align: middle; | 73 vertical-align: middle; |
| 26 } | 74 } |
| 27 | 75 |
| 28 .displays-primary { | 76 .display-mirrored { |
| 29 border: solid 1px blue; | 77 border: dashed 1px; |
| 30 } | 78 } |
| 31 | 79 |
| 32 .displays-focused { | 80 .displays-focused { |
| 33 border: solid 2px; | 81 border: solid 2px skyblue; |
| 82 color: skyblue; | |
| 34 } | 83 } |
| 84 | |
| 85 .display-options-single-button-container { | |
| 86 margin-bottom: 5px; | |
|
James Hawkins
2012/08/03 18:08:23
Use shorthand notation.
Jun Mukai
2012/08/06 08:07:32
Done.
| |
| 87 margin-top: 5px; | |
| 88 } | |
| 89 | |
| 90 .display-options-button { | |
| 91 width: 120px; | |
| 92 } | |
| OLD | NEW |