Chromium Code Reviews| 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 .right-column label input[type='checkbox'] { | |
| 77 height: 1.1em; | 78 height: 1.1em; |
|
dpapad
2017/04/12 00:03:03
Nit (optional): You can avoid repeating value lite
rbpotter
2017/04/12 00:23:33
Done.
| |
| 79 min-height: 13.19px; | |
| 80 min-width: 13.19px; | |
| 78 width: 1.1em; | 81 width: 1.1em; |
| 79 } | 82 } |
| 80 | 83 |
| 81 .right-column label input[type='checkbox'] { | |
| 82 height: 1.1em; | |
| 83 width: 1.1em; | |
| 84 } | |
| 85 | |
| 86 .left-column { | 84 .left-column { |
| 87 -webkit-padding-end: 20px; | 85 -webkit-padding-end: 20px; |
| 88 -webkit-padding-start: 20px; | 86 -webkit-padding-start: 20px; |
| 89 display: table-cell; | 87 display: table-cell; |
| 90 min-width: 70px; | 88 min-width: 70px; |
| 91 vertical-align: middle; | 89 vertical-align: middle; |
| 92 } | 90 } |
| 93 | 91 |
| 94 .left-column h1 { | 92 .left-column h1 { |
| 95 color: #646464; | 93 color: #646464; |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 318 :enabled:focus:-webkit-any(input[type='checkbox'], | 316 :enabled:focus:-webkit-any(input[type='checkbox'], |
| 319 input[type='radio'], | 317 input[type='radio'], |
| 320 button) { | 318 button) { |
| 321 /* Cancel border-color for :focus specified in widgets.css. */ | 319 /* Cancel border-color for :focus specified in widgets.css. */ |
| 322 border-color: rgba(0,0,0,0.25); | 320 border-color: rgba(0,0,0,0.25); |
| 323 } | 321 } |
| 324 | 322 |
| 325 html:not(.focus-outline-visible) [is='action-link']:focus { | 323 html:not(.focus-outline-visible) [is='action-link']:focus { |
| 326 outline: none; | 324 outline: none; |
| 327 } | 325 } |
| OLD | NEW |