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

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

Issue 8118012: WebUI Edit Search Engine Dialog (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: arv review 1 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/edit_search_engine_dialog.css
diff --git a/chrome/browser/resources/edit_search_engine_dialog.css b/chrome/browser/resources/edit_search_engine_dialog.css
new file mode 100644
index 0000000000000000000000000000000000000000..5dbfc360f4c896380a12455b1b4a4b66cf4ec7ca
--- /dev/null
+++ b/chrome/browser/resources/edit_search_engine_dialog.css
@@ -0,0 +1,63 @@
+/* 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;
+}
+
flackr 2011/10/05 02:41:12 It's not clear to me that you've used .vbox, or .f
wyck 2011/10/05 14:32:32 Done.
+.vbox,
+.hbox {
+ display: table;
+ height: 100%;
+ width: 100%;
+}
+
+.vbox > div {
+ display: table-row;
+}
+
+.hbox > div {
+ display: table-cell;
+ vertical-align: top;
+}
+
+.vbox > .fill {
+ height: 100%;
+}
+
+.hbox > .fill {
+ width: 100%;
+}
+
+.hfill {
+ width: 100%;
+}
+
+input {
+ box-sizing: border-box;
+}
+
+#url-description {
+ margin: 12px 3px 0 3px;
+}
+
+#buttons-table {
+ float: right;
+ margin: 20px 8px 8px 8px;
+ width: auto;
+}
+
+#buttons-table > div {
+ padding: 3px;
+ width: 50%;
+}
+
+button {
+ white-space: nowrap;
+ width: 100%;
+}

Powered by Google App Engine
This is Rietveld 408576698