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

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: self review 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..8c689b690fd64a0178e97611a97ec49875d0f2c4
--- /dev/null
+++ b/chrome/browser/resources/edit_search_engine_dialog.css
@@ -0,0 +1,66 @@
+/* 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 {
flackr 2011/10/05 02:41:12 Seems like this shouldn't be necessary on both htm
wyck 2011/10/05 14:32:32 This is the way it was suggested to me originally.
+ background-color: #EEE;
flackr 2011/10/05 02:41:12 s/EEE/eee
wyck 2011/10/05 14:32:32 Done.
+ height: 100%;
+ margin: 0;
+ overflow: hidden;
+}
+
+.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 {
+ -webkit-box-sizing: border-box;
arv (Not doing code reviews) 2011/10/04 20:55:01 skip -webkit-box-sizing
wyck 2011/10/04 21:57:57 Done.
+ box-sizing: border-box;
+}
+
+#url-description {
+ margin: 12px 3px 0 3px;
+}
+
+#buttons-table {
+ float: right;
arv (Not doing code reviews) 2011/10/04 20:55:01 don't use floats. What is your intention here?
wyck 2011/10/04 21:57:57 My intention is that the buttons are at the right.
arv (Not doing code reviews) 2011/10/06 17:39:51 Sorry for being slow here. If I understand correc
+ margin-bottom: 8px;
+ margin-right: 8px;
arv (Not doing code reviews) 2011/10/04 20:55:01 RTL
wyck 2011/10/04 21:57:57 Done.
+ margin-top: 20px;
+ width: auto;
+}
+
+#buttons-table > div {
+ padding: 3px;
+ width: 50%;
+}
+
+button {
+ white-space: nowrap;
+ width: 100%;
+}

Powered by Google App Engine
This is Rietveld 408576698