| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 .message-with-dots span span:nth-child(3) { | 391 .message-with-dots span span:nth-child(3) { |
| 392 -webkit-animation-delay: 300ms; | 392 -webkit-animation-delay: 300ms; |
| 393 } | 393 } |
| 394 | 394 |
| 395 #error-action-area { | 395 #error-action-area { |
| 396 margin-top: 10px; | 396 margin-top: 10px; |
| 397 } | 397 } |
| 398 | 398 |
| 399 /* TODO(estade): unfork this code. */ | 399 /* TODO(estade): unfork this code. */ |
| 400 .button-strip { | 400 .button-strip { |
| 401 <if expr="not pp_ifdef('toolkit_views')"> |
| 402 -webkit-box-direction: reverse; |
| 403 </if> |
| 401 -webkit-box-orient: horizontal; | 404 -webkit-box-orient: horizontal; |
| 402 -webkit-box-pack: end; | 405 -webkit-box-pack: end; |
| 403 display: -webkit-box; | 406 display: -webkit-box; |
| 404 } | 407 } |
| 405 | 408 |
| 406 html:not([toolkit=views]) .button-strip { | |
| 407 -webkit-box-direction: reverse; | |
| 408 } | |
| 409 | |
| 410 #print-preview .button-strip button { | 409 #print-preview .button-strip button { |
| 411 -webkit-margin-start: 4px; | 410 -webkit-margin-start: 4px; |
| 412 display: block; | 411 display: block; |
| 413 } | 412 } |
| 414 | 413 |
| 415 #dummy-box { | 414 #dummy-box { |
| 416 -webkit-box-align: stretch; | 415 -webkit-box-align: stretch; |
| 417 -webkit-box-flex: 1; | 416 -webkit-box-flex: 1; |
| 418 -webkit-box-orient: vertical; | 417 -webkit-box-orient: vertical; |
| 419 background: #ccc; | 418 background: #ccc; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 444 } | 443 } |
| 445 | 444 |
| 446 #intentionally-blank { | 445 #intentionally-blank { |
| 447 color: black; | 446 color: black; |
| 448 display: inline-block; | 447 display: inline-block; |
| 449 font-style: italic; | 448 font-style: italic; |
| 450 text-align: center; | 449 text-align: center; |
| 451 text-decoration: none; | 450 text-decoration: none; |
| 452 padding: 0 10px; | 451 padding: 0 10px; |
| 453 } | 452 } |
| OLD | NEW |