| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 -webkit-box-flex: 1; | 309 -webkit-box-flex: 1; |
| 310 -webkit-box-orient: vertical; | 310 -webkit-box-orient: vertical; |
| 311 display: -webkit-box; | 311 display: -webkit-box; |
| 312 height: 100%; | 312 height: 100%; |
| 313 position: relative; | 313 position: relative; |
| 314 } | 314 } |
| 315 | 315 |
| 316 html:not(.focus-outline-visible) | 316 html:not(.focus-outline-visible) |
| 317 :enabled:focus:-webkit-any(input[type='checkbox'], | 317 :enabled:focus:-webkit-any(input[type='checkbox'], |
| 318 input[type='radio'], | 318 input[type='radio'], |
| 319 button):not(.link-button) { | 319 button) { |
| 320 /* Cancel border-color for :focus specified in widgets.css. */ | 320 /* Cancel border-color for :focus specified in widgets.css. */ |
| 321 border-color: rgba(0,0,0,0.25); | 321 border-color: rgba(0,0,0,0.25); |
| 322 } | 322 } |
| 323 | 323 |
| 324 html:not(.focus-outline-visible) button:focus.link-button { | 324 html:not(.focus-outline-visible) [is='action-link']:focus { |
| 325 outline: none; | 325 outline: none; |
| 326 } | 326 } |
| OLD | NEW |