Chromium Code Reviews| 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 19 matching lines...) Expand all Loading... | |
| 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; | 37 -webkit-box-align: center; |
| 38 -webkit-box-orient: horizontal; | 38 -webkit-box-orient: horizontal; |
| 39 -webkit-box-pack: end; | 39 -webkit-box-pack: end; |
| 40 bottom: 0px; | |
|
arv (Not doing code reviews)
2011/11/29 20:25:57
s/0px/0/
Kevin Greer
2011/11/29 21:44:53
Done.
| |
| 40 display: -webkit-box; | 41 display: -webkit-box; |
| 41 padding: 12px; | 42 padding: 12px; |
| 43 position: absolute; | |
|
arv (Not doing code reviews)
2011/11/29 20:25:57
This seems a bit strange to me. Why do we want to
Kevin Greer
2011/11/29 21:44:53
I want the buttons to be a fixed distance from the
| |
| 44 right: 0px; | |
|
arv (Not doing code reviews)
2011/11/29 20:25:57
RTL?
html[dir=rtl] .action-area {
left: 0;
ri
Kevin Greer
2011/11/29 21:44:53
Done.
| |
| 42 text-align: end; | 45 text-align: end; |
|
arv (Not doing code reviews)
2011/11/29 20:25:57
text-align is not needed if we go with position ab
Kevin Greer
2011/11/29 21:44:53
removed
| |
| 43 } | 46 } |
| 44 | 47 |
| 45 .button-strip { | 48 .button-strip { |
| 46 -webkit-box-orient: horizontal; | 49 -webkit-box-orient: horizontal; |
| 47 display: -webkit-box; | 50 display: -webkit-box; |
| 48 } | 51 } |
| 49 | 52 |
| 50 .button-strip > button { | 53 .button-strip > button { |
| 51 -webkit-margin-start: 10px; | 54 -webkit-margin-start: 10px; |
| 52 display: block; | 55 display: block; |
| 53 white-space: nowrap; | 56 white-space: nowrap; |
| 54 } | 57 } |
| 55 | 58 |
| 56 .valid { | 59 .valid { |
| 57 background-image: url("chrome://theme/IDR_INPUT_GOOD"); | 60 background-image: url("chrome://theme/IDR_INPUT_GOOD"); |
| 58 height: 21px; | 61 height: 21px; |
| 59 width: 22px; | 62 width: 22px; |
| 60 } | 63 } |
| 61 | 64 |
| 62 .invalid { | 65 .invalid { |
| 63 background-image: url("chrome://theme/IDR_INPUT_ALERT"); | 66 background-image: url("chrome://theme/IDR_INPUT_ALERT"); |
| 64 height: 21px; | 67 height: 21px; |
| 65 width: 22px; | 68 width: 22px; |
| 66 } | 69 } |
| OLD | NEW |