| OLD | NEW |
| (Empty) |
| 1 /* | |
| 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 | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 .cr-dialog-container { | |
| 8 position: absolute; | |
| 9 -webkit-user-select: none; | |
| 10 top: 0; | |
| 11 left: 0; | |
| 12 height: 100%; | |
| 13 width: 100%; | |
| 14 | |
| 15 background: -webkit-radial-gradient(rgba(127, 127, 127, 0.5), | |
| 16 rgba(127, 127, 127, 0.5) 35%, | |
| 17 rgba(0, 0, 0, 0.7)); | |
| 18 opacity: 0; | |
| 19 -webkit-transition: opacity 0.25s linear; | |
| 20 overflow: hidden; | |
| 21 | |
| 22 z-index: 9999; | |
| 23 } | |
| 24 | |
| 25 .cr-dialog-frame { | |
| 26 position: absolute; | |
| 27 display: -webkit-box; | |
| 28 -webkit-box-orient: vertical; | |
| 29 -webkit-box-shadow: 5px 5px 5px rgba(100, 100, 100, 0.5); | |
| 30 | |
| 31 -webkit-transition-duration: 0.25s; | |
| 32 -webkit-transition-property: none; | |
| 33 | |
| 34 min-width: 25%; | |
| 35 max-width: 75%; | |
| 36 border: 1px #aaa solid; | |
| 37 border-radius: 2px; | |
| 38 background-color: white; | |
| 39 padding: 15px; | |
| 40 } | |
| 41 | |
| 42 .cr-dialog-text { | |
| 43 padding-bottom: 10px; | |
| 44 } | |
| 45 | |
| 46 .cr-dialog-frame input { | |
| 47 -webkit-box-sizing: border-box; | |
| 48 width: 100%; | |
| 49 } | |
| 50 | |
| 51 .cr-dialog-buttons { | |
| 52 display: -webkit-box; | |
| 53 -webkit-box-orient: horizontal; | |
| 54 padding-top: 10px; | |
| 55 -webkit-box-pack: end; | |
| 56 } | |
| OLD | NEW |