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

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

Issue 10544171: Add OptionsUI and its handler for multiple displays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 8 years, 6 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
new file mode 100644
index 0000000000000000000000000000000000000000..7c0937b94c88de79a6bb1aeb1e40efe4b7939fc4
--- /dev/null
+++ b/chrome/browser/resources/options2/chromeos/display_options.css
@@ -0,0 +1,36 @@
+/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file. */
+
+#display-options-displays-view-host {
+ padding: 20px;
+}
+
+#display-options-displays-view {
+ height: 300px;
+ position: relative;
+}
+
+#display-configurations {
+ border-top: 1px solid blue;
+ padding-top: 20px;
+ text-align: right;
+}
+
+.displays-display {
+ background-color: white;
+ border: dashed 1px;
+ position: absolute;
+ text-align: center;
+ vertical-align: middle;
+ z-index: 0;
+}
+
+.displays-primary {
+ border: solid 1px blue;
+}
+
+.displays-focused {
+ border: solid 2px;
+ z-index: 1;
James Hawkins 2012/06/20 16:21:03 Why do you need to set the z-index?
Jun Mukai 2012/06/21 08:42:58 Removed. Thanks for pointing. That was introduce
+}

Powered by Google App Engine
This is Rietveld 408576698