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