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%; |
+} |