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

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

Issue 8573016: Print Preview: Fixing tab order of hidden elements. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing some unneeded code. 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 span.hint.closing { 159 span.hint.closing {
160 -webkit-transition: margin 150ms, height 150ms, opacity 150ms; 160 -webkit-transition: margin 150ms, height 150ms, opacity 150ms;
161 background: transparent; 161 background: transparent;
162 height: 0 !important; 162 height: 0 !important;
163 margin-bottom: 0; 163 margin-bottom: 0;
164 margin-top: 0; 164 margin-top: 0;
165 opacity: 0; 165 opacity: 0;
166 } 166 }
167 167
168 .collapsible { 168 .collapsible {
169 -webkit-transition: color 200ms;
Evan Stade 2011/11/16 20:04:23 why remove?
dpapad 2011/11/16 21:09:25 This only makes sense when there is some text, whi
170 height: 0; 169 height: 0;
171 overflow: hidden; 170 overflow: hidden;
172 } 171 }
173 172
174 .collapsible.visible { 173 .collapsible.visible {
175 -webkit-animation-duration: 200ms; 174 -webkit-animation-duration: 200ms;
176 -webkit-animation-fill-mode: forwards; 175 -webkit-animation-fill-mode: forwards;
177 height: auto; 176 height: auto;
178 } 177 }
179 178
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 /* TODO(estade): unfork this code. */ 409 /* TODO(estade): unfork this code. */
411 .button-strip { 410 .button-strip {
412 -webkit-box-orient: horizontal; 411 -webkit-box-orient: horizontal;
413 -webkit-box-pack: end; 412 -webkit-box-pack: end;
414 display: -webkit-box; 413 display: -webkit-box;
415 } 414 }
416 415
417 html[toolkit=views] .button-strip { 416 html[toolkit=views] .button-strip {
418 -webkit-box-direction: reverse; 417 -webkit-box-direction: reverse;
419 } 418 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698