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

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

Issue 7215045: Print Preview: Fixing pages textfield appearance when scrollbar is visible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing nits Created 9 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview/print_preview.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 .closing .extra { 604 .closing .extra {
605 -webkit-transition: padding-top 100ms, height 100ms, opacity 200ms, background 300ms; 605 -webkit-transition: padding-top 100ms, height 100ms, opacity 200ms, background 300ms;
606 height: 0 !important; 606 height: 0 !important;
607 opacity: 0; 607 opacity: 0;
608 overflow: hidden; 608 overflow: hidden;
609 padding-top: 0; 609 padding-top: 0;
610 position: static; 610 position: static;
611 visibility: visible; 611 visibility: visible;
612 } 612 }
613 613
614 body #individual-pages { 614 #print-pages-div {
615 width: 81.5%; 615 -webkit-box-align: center;
616 -webkit-box-orient: horizontal;
617 display: -webkit-box;
618 }
619
620 #print-pages-div > label {
621 -webkit-box-flex: 1;
622 display: -webkit-box;
623 }
624
625 #individual-pages {
626 -webkit-box-flex: 1;
627 -webkit-margin-start: 5px;
628 display: block;
616 } 629 }
617 630
618 #print-summary { 631 #print-summary {
619 display: block; 632 display: block;
620 min-height: 30px; 633 min-height: 30px;
621 } 634 }
622 635
623 #collate-option { 636 #collate-option {
624 -webkit-transition: opacity 200ms, -webkit-transform 200ms; 637 -webkit-transition: opacity 200ms, -webkit-transform 200ms;
625 -webkit-padding-start: 5px; 638 -webkit-padding-start: 5px;
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 -webkit-animation-delay: 300ms; 751 -webkit-animation-delay: 300ms;
739 } 752 }
740 753
741 #two-sided-div { 754 #two-sided-div {
742 margin-top: 10px; 755 margin-top: 10px;
743 } 756 }
744 757
745 input[disabled] + label { 758 input[disabled] + label {
746 color: gray; 759 color: gray;
747 } 760 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview/print_preview.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698