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