| 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 #preview-area.preview-area { | 5 #preview-area.preview-area { |
| 6 -webkit-box-flex: 1; | 6 -webkit-box-flex: 1; |
| 7 -webkit-user-select: none; | 7 -webkit-user-select: none; |
| 8 background-color: #ccc; | 8 background-color: #ccc; |
| 9 height: 100%; | |
| 10 overflow: hidden; | 9 overflow: hidden; |
| 11 position: relative; | 10 position: relative; |
| 12 } | 11 } |
| 13 | 12 |
| 13 .preview-area-plugin-wrapper { |
| 14 height: 100%; |
| 15 position: absolute; |
| 16 width: 100%; |
| 17 } |
| 18 |
| 14 #preview-area .preview-area-plugin { | 19 #preview-area .preview-area-plugin { |
| 15 /* pluginFadeInTransitionDuration = 200ms */ | 20 /* pluginFadeInTransitionDuration = 200ms */ |
| 16 -webkit-transition: opacity 200ms linear; | 21 -webkit-transition: opacity 200ms linear; |
| 17 /* pluginFadeInTransitionDelay = overlayFadeOutTransitionDuration = 100ms */ | 22 /* pluginFadeInTransitionDelay = overlayFadeOutTransitionDuration = 100ms */ |
| 18 -webkit-transition-delay: 100ms; | 23 -webkit-transition-delay: 100ms; |
| 19 cursor: inherit; | 24 cursor: inherit; |
| 20 height: 100%; | 25 height: 100%; |
| 21 opacity: 1; | 26 opacity: 1; |
| 22 width: 100%; | 27 width: 100%; |
| 23 } | 28 } |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 top: 50%; | 70 top: 50%; |
| 66 } | 71 } |
| 67 | 72 |
| 68 #preview-area .preview-area-no-plugin-action-area { | 73 #preview-area .preview-area-no-plugin-action-area { |
| 69 margin-top: 12px; | 74 margin-top: 12px; |
| 70 } | 75 } |
| 71 | 76 |
| 72 #preview-area .preview-area-open-system-dialog-button-throbber { | 77 #preview-area .preview-area-open-system-dialog-button-throbber { |
| 73 vertical-align: middle; | 78 vertical-align: middle; |
| 74 } | 79 } |
| OLD | NEW |