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 { | |
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.
| |
7 background-color: #EEE; | |
flackr
2011/10/05 02:41:12
s/EEE/eee
wyck
2011/10/05 14:32:32
Done.
| |
8 height: 100%; | |
9 margin: 0; | |
10 overflow: hidden; | |
11 } | |
12 | |
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 -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.
| |
43 box-sizing: border-box; | |
44 } | |
45 | |
46 #url-description { | |
47 margin: 12px 3px 0 3px; | |
48 } | |
49 | |
50 #buttons-table { | |
51 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
| |
52 margin-bottom: 8px; | |
53 margin-right: 8px; | |
arv (Not doing code reviews)
2011/10/04 20:55:01
RTL
wyck
2011/10/04 21:57:57
Done.
| |
54 margin-top: 20px; | |
55 width: auto; | |
56 } | |
57 | |
58 #buttons-table > div { | |
59 padding: 3px; | |
60 width: 50%; | |
61 } | |
62 | |
63 button { | |
64 white-space: nowrap; | |
65 width: 100%; | |
66 } | |
OLD | NEW |