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

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

Issue 8425008: PrintPreview:[MAC] Added "Open PDF In Preview" option to open the pdf in native preview app. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Added a check to fix the TestErrorMessage unit test Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 5
6 html { 6 html {
7 height: 100%; 7 height: 100%;
8 } 8 }
9 9
10 body { 10 body {
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 margin: 0; 95 margin: 0;
96 margin-bottom: 10px; 96 margin-bottom: 10px;
97 } 97 }
98 98
99 h1 { 99 h1 {
100 color: #808080; 100 color: #808080;
101 font-size: 100%; 101 font-size: 100%;
102 font-weight: 300; 102 font-weight: 300;
103 } 103 }
104 104
105 #system-dialog-link { 105 .preview-link-button {
106 -webkit-padding-start: 16px; 106 -webkit-padding-start: 16px;
107 outline: 0; 107 outline: 0;
108 padding-top: 10px; 108 padding-top: 10px;
109 text-decoration: none; 109 text-decoration: none;
110 text-align: start; 110 text-align: start;
111 } 111 }
112 112
113 #system-dialog-link:hover:not(:disabled) { 113 .preview-link-button:hover:not(:disabled) {
114 text-decoration: underline; 114 text-decoration: underline;
115 } 115 }
116 116
117 #system-dialog-link:disabled { 117 .preview-link-button:disabled {
118 color: rgba(0, 0, 0, .5); 118 color: rgba(0, 0, 0, .5);
119 cursor: default; 119 cursor: default;
120 text-shadow: none; 120 text-shadow: none;
121 } 121 }
122 122
123 button.loading { 123 button.loading {
124 cursor: progress; 124 cursor: progress;
125 } 125 }
126 126
127 button.default { 127 button.default {
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 /* TODO(estade): unfork this code. */ 410 /* TODO(estade): unfork this code. */
411 .button-strip { 411 .button-strip {
412 -webkit-box-orient: horizontal; 412 -webkit-box-orient: horizontal;
413 -webkit-box-pack: end; 413 -webkit-box-pack: end;
414 display: -webkit-box; 414 display: -webkit-box;
415 } 415 }
416 416
417 html[toolkit=views] .button-strip { 417 html[toolkit=views] .button-strip {
418 -webkit-box-direction: reverse; 418 -webkit-box-direction: reverse;
419 } 419 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/print_preview/preview_area.js ('k') | chrome/browser/resources/print_preview/print_preview.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698