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

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

Issue 8298019: Implement InputWindowDialog with WebUI for bookmark folder management. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 'Address comments' Created 9 years, 2 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/input_window_dialog.css
diff --git a/chrome/browser/resources/input_window_dialog.css b/chrome/browser/resources/input_window_dialog.css
new file mode 100644
index 0000000000000000000000000000000000000000..581f4e6d983537e1ee43269324345cf048485dc9
--- /dev/null
+++ b/chrome/browser/resources/input_window_dialog.css
@@ -0,0 +1,43 @@
+/* Copyright (c) 2011 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.
+ */
+
+html, body {
xiyuan 2011/10/18 16:11:32 nit: split into two lines. It's good to keep each
mazda 2011/10/18 17:32:02 Done.
+ background-color: #EEE;
+ height: 100%;
+ margin: 0;
+ overflow: hidden;
+}
+
+.vbox {
+ height: 100%;
+ width: 100%;
+}
+
+.input-area {
+ -webkit-box-align: center;
+ -webkit-box-pack: center;
+ display: -webkit-box;
+ height: 60%;
+}
+
+.buttons-area {
+ display: table;
+ float: right;
+ height: 100%;
+ margin-right: 8px;
+ width: auto;
+}
+
+.buttons-area > div {
+ display: table-cell;
+ padding: 3px;
+ vertical-align: top;
+ width: 50%;
+}
+
+button {
+ white-space: nowrap;
+ width: 100%;
+}

Powered by Google App Engine
This is Rietveld 408576698