OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 .cr-dialog-container { | 5 .cr-dialog-container { |
6 -webkit-box-align: center; | 6 -webkit-box-align: center; |
7 -webkit-box-pack: center; | 7 -webkit-box-pack: center; |
8 -webkit-transition: opacity 250ms linear; | 8 -webkit-transition: opacity 250ms linear; |
9 -webkit-user-select: none; | |
10 display: -webkit-box; | 9 display: -webkit-box; |
11 height: 100%; | 10 height: 100%; |
12 left: 0; | 11 left: 0; |
13 overflow: hidden; | 12 overflow: hidden; |
14 position: absolute; | 13 position: absolute; |
15 top: 0; | 14 top: 0; |
| 15 user-select: none; |
16 width: 100%; | 16 width: 100%; |
17 z-index: 9999; | 17 z-index: 9999; |
18 } | 18 } |
19 | 19 |
20 .cr-dialog-frame { | 20 .cr-dialog-frame { |
21 -webkit-box-orient: vertical; | 21 -webkit-box-orient: vertical; |
22 -webkit-box-shadow: 5px 5px 5px rgba(100, 100, 100, 0.5); | 22 -webkit-box-shadow: 5px 5px 5px rgba(100, 100, 100, 0.5); |
23 background-color: white; | 23 background-color: white; |
24 border: 1px solid rgba(0, 0, 0, 0.3); | 24 border: 1px solid rgba(0, 0, 0, 0.3); |
25 border-radius: 3px; | 25 border-radius: 3px; |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 width: 44px; | 137 width: 44px; |
138 } | 138 } |
139 | 139 |
140 .cr-dialog-close:hover { | 140 .cr-dialog-close:hover { |
141 background-image: url(chrome://theme/IDR_CLOSE_DIALOG_H); | 141 background-image: url(chrome://theme/IDR_CLOSE_DIALOG_H); |
142 } | 142 } |
143 | 143 |
144 .cr-dialog-close:active { | 144 .cr-dialog-close:active { |
145 background-image: url(chrome://theme/IDR_CLOSE_DIALOG_P); | 145 background-image: url(chrome://theme/IDR_CLOSE_DIALOG_P); |
146 } | 146 } |
OLD | NEW |