| 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 html { | 5 html { |
| 6 height: 100%; | 6 height: 100%; |
| 7 overflow: hidden; | 7 overflow: hidden; |
| 8 } | 8 } |
| 9 | 9 |
| 10 body { | 10 body { |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 } | 276 } |
| 277 | 277 |
| 278 span.jumping-dots > span:nth-child(2) { | 278 span.jumping-dots > span:nth-child(2) { |
| 279 -webkit-animation-delay: 100ms; | 279 -webkit-animation-delay: 100ms; |
| 280 } | 280 } |
| 281 | 281 |
| 282 span.jumping-dots > span:nth-child(3) { | 282 span.jumping-dots > span:nth-child(3) { |
| 283 -webkit-animation-delay: 300ms; | 283 -webkit-animation-delay: 300ms; |
| 284 } | 284 } |
| 285 | 285 |
| 286 /* TODO(estade): unfork this code. */ | |
| 287 #print-header .button-strip { | 286 #print-header .button-strip { |
| 288 <if expr="not chromeos and not is_win"> | |
| 289 -webkit-box-direction: reverse; | |
| 290 </if> | |
| 291 -webkit-box-orient: horizontal; | 287 -webkit-box-orient: horizontal; |
| 292 -webkit-box-pack: end; | 288 -webkit-box-pack: end; |
| 293 display: -webkit-box; | 289 display: -webkit-box; |
| 294 } | 290 } |
| 295 | 291 |
| 296 #print-header .button-strip button { | 292 #print-header .button-strip button { |
| 297 -webkit-margin-start: 9px; | 293 -webkit-margin-start: 9px; |
| 298 display: block; | 294 display: block; |
| 299 } | 295 } |
| 300 | 296 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 317 :enabled:focus:-webkit-any(input[type='checkbox'], | 313 :enabled:focus:-webkit-any(input[type='checkbox'], |
| 318 input[type='radio'], | 314 input[type='radio'], |
| 319 button) { | 315 button) { |
| 320 /* Cancel border-color for :focus specified in widgets.css. */ | 316 /* Cancel border-color for :focus specified in widgets.css. */ |
| 321 border-color: rgba(0,0,0,0.25); | 317 border-color: rgba(0,0,0,0.25); |
| 322 } | 318 } |
| 323 | 319 |
| 324 html:not(.focus-outline-visible) [is='action-link']:focus { | 320 html:not(.focus-outline-visible) [is='action-link']:focus { |
| 325 outline: none; | 321 outline: none; |
| 326 } | 322 } |
| OLD | NEW |