Chromium Code Reviews| 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..581f4e6d983537e1ee43269324345cf048485dc9 |
| --- /dev/null |
| +++ b/chrome/browser/resources/input_window_dialog.css |
| @@ -0,0 +1,43 @@ |
| +/* 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 { |
|
xiyuan
2011/10/18 16:11:32
nit: split into two lines. It's good to keep each
mazda
2011/10/18 17:32:02
Done.
|
| + 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%; |
| +} |