Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2969)

Unified Diff: chrome/browser/resources/options2/chromeos/display_options.css

Issue 10843066: Polish "Displays" Options UI for ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: blue -> skyblue Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698