Index: chrome/browser/resources/options2/chromeos/display_options.css |
diff --git a/chrome/browser/resources/options2/chromeos/display_options.css b/chrome/browser/resources/options2/chromeos/display_options.css |
index f6255eb46ff05158f355543c4e7e86f875564124..8fd24a3f84ad3503ae0f80453dcb62420f4ba6a6 100644 |
--- a/chrome/browser/resources/options2/chromeos/display_options.css |
+++ b/chrome/browser/resources/options2/chromeos/display_options.css |
@@ -2,6 +2,14 @@ |
* Use of this source code is governed by a BSD-style license that can be |
* found in the LICENSE file. */ |
+#display-options { |
+ background-color: #f0f0f0; |
+} |
+ |
+#display-options-content-area { |
+ padding: 0; |
+} |
+ |
#display-options-displays-view-host { |
padding: 20px; |
} |
@@ -12,23 +20,73 @@ |
} |
#display-configurations { |
- border-top: 1px solid blue; |
- padding-top: 20px; |
- text-align: right; |
+ background-color: white; |
+ border-top: 1px solid lightgrey; |
+ height: 65px; |
+ padding-bottom: 15px; |
James Hawkins
2012/08/03 18:08:23
nit: Use shorthand notation.
Jun Mukai
2012/08/06 08:07:32
Done.
|
+ padding-left: 15px; |
+ padding-right: 15px; |
+ padding-top: 15px; |
+ position: relative; |
} |
-.displays-display { |
+#display-configuration-arrow { |
+ -webkit-transform: rotate(45deg); |
background-color: white; |
- border: dashed 1px; |
+ 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
|
+ border-top: 1px solid lightgrey; |
+ height: 20px; |
+ position: absolute; |
+ width: 20px; |
+ z-index: 1; |
+} |
+ |
+#display-options-buttons-container { |
+ position: absolute; |
+ right: 15px; |
James Hawkins
2012/08/03 18:08:23
RTL
Jun Mukai
2012/08/06 08:07:32
Done.
|
+ top: 15px; |
+ z-index: 2; |
+} |
+ |
+#selected-display-data-container { |
+ line-height: 200%; |
+ z-index: 2; |
+} |
+ |
+#selected-display-name { |
+ font-weight: bold; |
+} |
+ |
+#display-launcher { |
+ background-color: lightgrey; |
+ bottom: 0; |
+ height: 10px; |
+ position: absolute; |
+} |
+ |
+.displays-display { |
+ background: #f0f0f0; |
+ border: solid 1px; |
+ font-weight: bold; |
position: absolute; |
text-align: center; |
vertical-align: middle; |
} |
-.displays-primary { |
- border: solid 1px blue; |
+.display-mirrored { |
+ border: dashed 1px; |
} |
.displays-focused { |
- border: solid 2px; |
+ border: solid 2px skyblue; |
+ color: skyblue; |
+} |
+ |
+.display-options-single-button-container { |
+ margin-bottom: 5px; |
James Hawkins
2012/08/03 18:08:23
Use shorthand notation.
Jun Mukai
2012/08/06 08:07:32
Done.
|
+ margin-top: 5px; |
+} |
+ |
+.display-options-button { |
+ width: 120px; |
} |