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

Unified Diff: chrome/browser/resources/gesture_config.css

Issue 10532005: Initial check-in of gesture config WebUI. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed debugging code and added comments. 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/gesture_config.css
diff --git a/chrome/browser/resources/gesture_config.css b/chrome/browser/resources/gesture_config.css
new file mode 100644
index 0000000000000000000000000000000000000000..363404bcd8bd37fb34530279dcc864d5ff9cab82
--- /dev/null
+++ b/chrome/browser/resources/gesture_config.css
@@ -0,0 +1,52 @@
+/* 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. */
+
+button {
+ background: #888;
+ color: #FFF;
+ font-size: 11px;
+ font-weight: bold;
+ height: 31px;
+ line-height: 31px;
+ margin-left: 20px;
+ margin-top: 20px;
+ width: 125px;
flackr 2012/06/06 14:50:54 Use 2 space indent.
Kevin Greer 2012/06/06 20:26:20 Done.
+}
+
+.buttons-pane {
+ float: right;
+}
+
+form {
+ width: 650px;
+}
+
+input {
+ border: solid 1px rgb(170, 207, 228);
+ display: block;
+ float: left;
+ font-size: 12px;
+ margin: 2px 0 8px 10px;
+ padding: 4px 2px;
+ text-align: right;
+ width: 150px;
+}
+
+label {
+ display: block;
+ float: left;
+ font-weight: bold;
+ padding-top: 4px;
+ text-align: right;
+ width: 350px;
+}
+
+.units {
+ display: block;
+ float: left;
+ margin-left: 7px;
+ padding-top: 4px;
+ text-align: left;
+ width: 100px;
+}

Powered by Google App Engine
This is Rietveld 408576698