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 |
| index c7eadac80d2d3862253638f324ea0ee80bb36a8c..f83890e90ba8257bd7204869a8b54641c4b0572e 100644 |
| --- a/chrome/browser/resources/input_window_dialog.css |
| +++ b/chrome/browser/resources/input_window_dialog.css |
| @@ -12,33 +12,31 @@ body { |
| } |
| .vbox { |
| + -webkit-box-align: center; |
| + -webkit-box-pack: center; |
| + -webkit-box-orient: vertical; |
|
flackr
2011/11/02 15:38:18
nit: Sort properties.
mazda
2011/11/07 09:59:23
Done.
|
| + display: -webkit-box; |
| height: 100%; |
| width: 100%; |
| } |
| -.input-area { |
| +.vbox > div { |
| -webkit-box-align: center; |
| + -webkit-box-flex: 1; |
| -webkit-box-pack: center; |
| display: -webkit-box; |
| - height: 60%; |
| + width: 80%; |
| } |
| -.buttons-area { |
| - display: table; |
| - float: right; |
| - height: 100%; |
| - margin-right: 8px; |
| - width: auto; |
| +.vbox > div.buttons-area { |
| + -webkit-box-pack: end; |
| } |
| .buttons-area > div { |
| - display: table-cell; |
| padding: 3px; |
| - vertical-align: top; |
| - width: 50%; |
| + width: 30%; |
| } |
| button { |
| - white-space: nowrap; |
| width: 100%; |
| } |