Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(387)

Side by Side Diff: chrome/browser/resources/print_preview/previewarea/preview_area.css

Issue 11194020: Creates GCP promo for ChromeOS users with no cloud printers. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Merge with trunk. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698