| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 span.jumping-dots > span:nth-child(2) { | 261 span.jumping-dots > span:nth-child(2) { |
| 262 -webkit-animation-delay: 100ms; | 262 -webkit-animation-delay: 100ms; |
| 263 } | 263 } |
| 264 | 264 |
| 265 span.jumping-dots > span:nth-child(3) { | 265 span.jumping-dots > span:nth-child(3) { |
| 266 -webkit-animation-delay: 300ms; | 266 -webkit-animation-delay: 300ms; |
| 267 } | 267 } |
| 268 | 268 |
| 269 /* TODO(estade): unfork this code. */ | 269 /* TODO(estade): unfork this code. */ |
| 270 #print-header .button-strip { | 270 #print-header .button-strip { |
| 271 <if expr="not pp_ifdef('chromeos') and not is_win"> | 271 <if expr="not chromeos and not is_win"> |
| 272 -webkit-box-direction: reverse; | 272 -webkit-box-direction: reverse; |
| 273 </if> | 273 </if> |
| 274 -webkit-box-orient: horizontal; | 274 -webkit-box-orient: horizontal; |
| 275 -webkit-box-pack: end; | 275 -webkit-box-pack: end; |
| 276 display: -webkit-box; | 276 display: -webkit-box; |
| 277 } | 277 } |
| 278 | 278 |
| 279 #print-header .button-strip button { | 279 #print-header .button-strip button { |
| 280 -webkit-margin-start: 9px; | 280 -webkit-margin-start: 9px; |
| 281 display: block; | 281 display: block; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 300 :enabled:focus:-webkit-any(input[type='checkbox'], | 300 :enabled:focus:-webkit-any(input[type='checkbox'], |
| 301 input[type='radio'], | 301 input[type='radio'], |
| 302 button):not(.link-button) { | 302 button):not(.link-button) { |
| 303 /* Cancel border-color for :focus specified in widgets.css. */ | 303 /* Cancel border-color for :focus specified in widgets.css. */ |
| 304 border-color: rgba(0,0,0,0.25); | 304 border-color: rgba(0,0,0,0.25); |
| 305 } | 305 } |
| 306 | 306 |
| 307 html:not(.focus-outline-visible) button:focus.link-button { | 307 html:not(.focus-outline-visible) button:focus.link-button { |
| 308 outline: none; | 308 outline: none; |
| 309 } | 309 } |
| OLD | NEW |