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

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: Rebase again 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
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/input_window_dialog.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..c7eadac80d2d3862253638f324ea0ee80bb36a8c
--- /dev/null
+++ b/chrome/browser/resources/input_window_dialog.css
@@ -0,0 +1,44 @@
+/* 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 {
+ 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%;
+}
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/input_window_dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698