| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .cr-dialog-container { | 7 .cr-dialog-container { |
| 8 position: absolute; | 8 position: absolute; |
| 9 -webkit-user-select: none; | 9 -webkit-user-select: none; |
| 10 top: 0; | 10 top: 0; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 -webkit-box-sizing: border-box; | 47 -webkit-box-sizing: border-box; |
| 48 width: 100%; | 48 width: 100%; |
| 49 } | 49 } |
| 50 | 50 |
| 51 .cr-dialog-buttons { | 51 .cr-dialog-buttons { |
| 52 display: -webkit-box; | 52 display: -webkit-box; |
| 53 -webkit-box-orient: horizontal; | 53 -webkit-box-orient: horizontal; |
| 54 padding-top: 10px; | 54 padding-top: 10px; |
| 55 -webkit-box-pack: end; | 55 -webkit-box-pack: end; |
| 56 } | 56 } |
| OLD | NEW |