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

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

Issue 7051026: Print Preview: Changing error message when initiator tab closes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebasing 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 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 position: absolute; 664 position: absolute;
665 width: 100%; 665 width: 100%;
666 } 666 }
667 667
668 #dancing-dots.invisible { 668 #dancing-dots.invisible {
669 -webkit-transition: opacity 0.7s linear; 669 -webkit-transition: opacity 0.7s linear;
670 opacity: 0; 670 opacity: 0;
671 pointer-events: none; 671 pointer-events: none;
672 } 672 }
673 673
674 .messages { 674 #messages {
675 color: #404040; 675 color: #404040;
676 font-size: 15px; 676 font-size: 15px;
677 left: 25%; 677 left: 25%;
678 position: relative; 678 position: relative;
679 text-align: center; 679 text-align: center;
680 text-shadow: 1px 1px 0 rgba(255, 255, 255, .7); 680 text-shadow: 1px 1px 0 rgba(255, 255, 255, .7);
681 top: 50%; 681 top: 50%;
682 width: 50%; 682 width: 50%;
683 } 683 }
684 684
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 -webkit-animation-delay: 300ms; 716 -webkit-animation-delay: 300ms;
717 } 717 }
718 718
719 #two-sided-div { 719 #two-sided-div {
720 margin-top: 10px; 720 margin-top: 10px;
721 } 721 }
722 722
723 input[disabled] + label { 723 input[disabled] + label {
724 color: gray; 724 color: gray;
725 } 725 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698