OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 html, body { | 6 html, body { |
7 height: 100%; | 7 height: 100%; |
8 margin: 0; | 8 margin: 0; |
9 overflow: hidden; | 9 overflow: hidden; |
10 } | 10 } |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 27 |
28 #top-box { | 28 #top-box { |
29 padding: 9px 9px 0 9px; | 29 padding: 9px 9px 0 9px; |
30 } | 30 } |
31 | 31 |
32 #middle-box { | 32 #middle-box { |
33 padding: 4px 9px 0 9px; | 33 padding: 4px 9px 0 9px; |
34 } | 34 } |
35 | 35 |
36 .action-area { | 36 .action-area { |
37 -webkit-box-align: center; | |
38 -webkit-box-orient: horizontal; | |
39 -webkit-box-pack: end; | 37 -webkit-box-pack: end; |
| 38 -webkit-box-sizing: border-box; |
| 39 bottom: 0; |
40 display: -webkit-box; | 40 display: -webkit-box; |
41 padding: 12px; | 41 padding: 12px; |
42 text-align: end; | 42 position: fixed; |
| 43 width: 100%; |
43 } | 44 } |
44 | 45 |
45 .button-strip { | 46 .button-strip { |
46 -webkit-box-orient: horizontal; | 47 -webkit-box-orient: horizontal; |
47 display: -webkit-box; | 48 display: -webkit-box; |
48 } | 49 } |
49 | 50 |
50 .button-strip > button { | 51 .button-strip > button { |
51 -webkit-margin-start: 10px; | 52 -webkit-margin-start: 10px; |
52 display: block; | 53 display: block; |
53 white-space: nowrap; | 54 white-space: nowrap; |
54 } | 55 } |
55 | 56 |
56 .valid { | 57 .valid { |
57 background-image: url("chrome://theme/IDR_INPUT_GOOD"); | 58 background-image: url("chrome://theme/IDR_INPUT_GOOD"); |
58 height: 21px; | 59 height: 21px; |
59 width: 22px; | 60 width: 22px; |
60 } | 61 } |
61 | 62 |
62 .invalid { | 63 .invalid { |
63 background-image: url("chrome://theme/IDR_INPUT_ALERT"); | 64 background-image: url("chrome://theme/IDR_INPUT_ALERT"); |
64 height: 21px; | 65 height: 21px; |
65 width: 22px; | 66 width: 22px; |
66 } | 67 } |
OLD | NEW |