| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 .right-column .radio { | 66 .right-column .radio { |
| 67 margin: 0; | 67 margin: 0; |
| 68 } | 68 } |
| 69 | 69 |
| 70 .right-column .checkbox label, | 70 .right-column .checkbox label, |
| 71 .right-column .radio label { | 71 .right-column .radio label { |
| 72 padding-bottom: 5px; | 72 padding-bottom: 5px; |
| 73 padding-top: 10px; | 73 padding-top: 10px; |
| 74 } | 74 } |
| 75 | 75 |
| 76 .right-column .radio input[type='radio'] { | 76 .right-column .radio input[type='radio'], |
| 77 height: 1.1em; | |
| 78 width: 1.1em; | |
| 79 } | |
| 80 | |
| 81 .right-column label input[type='checkbox'] { | 77 .right-column label input[type='checkbox'] { |
| 82 height: 1.1em; | 78 --min-size: 13.19px; |
| 83 width: 1.1em; | 79 --size: 1.1em; |
| 80 height: var(--size); |
| 81 min-height: var(--min-size); |
| 82 min-width: var(--min-size); |
| 83 width: var(--size); |
| 84 } | 84 } |
| 85 | 85 |
| 86 .left-column { | 86 .left-column { |
| 87 -webkit-padding-end: 20px; | 87 -webkit-padding-end: 20px; |
| 88 -webkit-padding-start: 20px; | 88 -webkit-padding-start: 20px; |
| 89 display: table-cell; | 89 display: table-cell; |
| 90 min-width: 70px; | 90 min-width: 70px; |
| 91 vertical-align: middle; | 91 vertical-align: middle; |
| 92 } | 92 } |
| 93 | 93 |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 :enabled:focus:-webkit-any(input[type='checkbox'], | 318 :enabled:focus:-webkit-any(input[type='checkbox'], |
| 319 input[type='radio'], | 319 input[type='radio'], |
| 320 button) { | 320 button) { |
| 321 /* Cancel border-color for :focus specified in widgets.css. */ | 321 /* Cancel border-color for :focus specified in widgets.css. */ |
| 322 border-color: rgba(0,0,0,0.25); | 322 border-color: rgba(0,0,0,0.25); |
| 323 } | 323 } |
| 324 | 324 |
| 325 html:not(.focus-outline-visible) [is='action-link']:focus { | 325 html:not(.focus-outline-visible) [is='action-link']:focus { |
| 326 outline: none; | 326 outline: none; |
| 327 } | 327 } |
| OLD | NEW |