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

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

Issue 7051040: Print Preview: Making the UI not block when preview is generated (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updating isCollated(), adding TODO comments. Created 9 years, 7 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 | Annotate | Revision Log
OLDNEW
1 html { 1 html {
2 height: 100%; 2 height: 100%;
3 } 3 }
4 4
5 body { 5 body {
6 background: white; 6 background: white;
7 display: -webkit-box; 7 display: -webkit-box;
8 height: 100%; 8 height: 100%;
9 margin: 0; 9 margin: 0;
10 overflow: hidden; 10 overflow: hidden;
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 } 599 }
600 600
601 #print-summary { 601 #print-summary {
602 display: block; 602 display: block;
603 min-height: 30px; 603 min-height: 30px;
604 } 604 }
605 605
606 #collate-option { 606 #collate-option {
607 -webkit-transition: opacity 200ms, -webkit-transform 200ms; 607 -webkit-transition: opacity 200ms, -webkit-transform 200ms;
608 -webkit-padding-start: 5px; 608 -webkit-padding-start: 5px;
609 display: inline-block;
610 opacity: 1; 609 opacity: 1;
611 } 610 }
612 611
613 #collate-option[hidden] { 612 #collate-option[hidden] {
614 -webkit-transition: opacity 100ms, -webkit-transform 100ms; 613 -webkit-transition: opacity 100ms, -webkit-transform 100ms;
615 opacity: 0; 614 opacity: 0;
616 } 615 }
617 616
618 body, 617 body,
619 button, 618 button,
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
722 -webkit-animation-delay: 300ms; 721 -webkit-animation-delay: 300ms;
723 } 722 }
724 723
725 #two-sided-div { 724 #two-sided-div {
726 margin-top: 10px; 725 margin-top: 10px;
727 } 726 }
728 727
729 input[disabled] + label { 728 input[disabled] + label {
730 color: gray; 729 color: gray;
731 } 730 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview.html » ('j') | chrome/browser/resources/print_preview.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698