Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. | |
| 4 */ | |
| 5 | |
| 6 html, body { | |
| 7 background-color: #EEE; | |
| 8 height: 100%; | |
| 9 margin: 0; | |
| 10 overflow: hidden; | |
| 11 } | |
| 12 | |
|
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.
| |
| 13 .vbox, | |
| 14 .hbox { | |
| 15 display: table; | |
| 16 height: 100%; | |
| 17 width: 100%; | |
| 18 } | |
| 19 | |
| 20 .vbox > div { | |
| 21 display: table-row; | |
| 22 } | |
| 23 | |
| 24 .hbox > div { | |
| 25 display: table-cell; | |
| 26 vertical-align: top; | |
| 27 } | |
| 28 | |
| 29 .vbox > .fill { | |
| 30 height: 100%; | |
| 31 } | |
| 32 | |
| 33 .hbox > .fill { | |
| 34 width: 100%; | |
| 35 } | |
| 36 | |
| 37 .hfill { | |
| 38 width: 100%; | |
| 39 } | |
| 40 | |
| 41 input { | |
| 42 box-sizing: border-box; | |
| 43 } | |
| 44 | |
| 45 #url-description { | |
| 46 margin: 12px 3px 0 3px; | |
| 47 } | |
| 48 | |
| 49 #buttons-table { | |
| 50 float: right; | |
| 51 margin: 20px 8px 8px 8px; | |
| 52 width: auto; | |
| 53 } | |
| 54 | |
| 55 #buttons-table > div { | |
| 56 padding: 3px; | |
| 57 width: 50%; | |
| 58 } | |
| 59 | |
| 60 button { | |
| 61 white-space: nowrap; | |
| 62 width: 100%; | |
| 63 } | |
| OLD | NEW |