OLD | NEW |
---|---|
1 #autofill-edit-address-overlay { | 1 #autofill-edit-address-overlay, #autofill-edit-credit-card-overlay { |
2 width: 500px; | 2 width: 500px; |
3 } | 3 } |
4 | 4 |
5 div.table { | 5 div.table { |
6 display: table; | 6 display: table; |
7 } | 7 } |
8 | 8 |
9 div.cell { | 9 div.cell { |
10 display: table-cell; | 10 display: table-cell; |
11 max-width: 151px; | 11 max-width: 151px; |
12 } | 12 } |
13 | 13 |
14 div.row { | 14 div.row { |
15 display: table-row; | 15 display: table-row; |
16 } | 16 } |
17 | 17 |
18 div.input { | 18 div.input { |
19 padding: 2px; | 19 padding: 2px; |
20 } | 20 } |
21 | 21 |
22 input.form { | 22 input.form { |
23 width: 90%; | 23 width: 90%; |
24 max-width: 151px; | 24 max-width: 151px; |
25 } | 25 } |
26 | |
27 div.input label span { | |
James Hawkins
2011/02/24 08:56:30
If you want display: block, just use a div instead
Ilya Sherman
2011/02/24 10:04:00
Done.
| |
28 display: block; | |
29 } | |
OLD | NEW |