| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 -webkit-padding-end: 20px; | 82 -webkit-padding-end: 20px; |
| 83 -webkit-padding-start: 20px; | 83 -webkit-padding-start: 20px; |
| 84 color: #646464; | 84 color: #646464; |
| 85 display: table-cell; | 85 display: table-cell; |
| 86 font-size: 12px; | 86 font-size: 12px; |
| 87 min-width: 70px; | 87 min-width: 70px; |
| 88 } | 88 } |
| 89 | 89 |
| 90 .two-column.visible h1, | 90 .two-column.visible h1, |
| 91 .two-column.visible .right-column { | 91 .two-column.visible .right-column { |
| 92 border-bottom: 1px solid #e9e9e9; | 92 padding-bottom: 5px; |
| 93 padding-bottom: 7px; | 93 padding-top: 5px; |
| 94 padding-top: 7px; | |
| 95 } | 94 } |
| 96 | 95 |
| 97 .two-column:not(.visible) select { | 96 .two-column:not(.visible) select { |
| 98 border-top-width: 0; | 97 border-top-width: 0; |
| 99 margin-top: 0; | 98 margin-top: 0; |
| 100 padding-top: 0; | 99 padding-top: 0; |
| 101 } | 100 } |
| 102 | 101 |
| 103 p { | 102 p { |
| 104 -webkit-line-box-contain: block; | 103 -webkit-line-box-contain: block; |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 :enabled:focus:-webkit-any(input[type='checkbox'], | 299 :enabled:focus:-webkit-any(input[type='checkbox'], |
| 301 input[type='radio'], | 300 input[type='radio'], |
| 302 button):not(.link-button) { | 301 button):not(.link-button) { |
| 303 /* Cancel border-color for :focus specified in widgets.css. */ | 302 /* Cancel border-color for :focus specified in widgets.css. */ |
| 304 border-color: rgba(0,0,0,0.25); | 303 border-color: rgba(0,0,0,0.25); |
| 305 } | 304 } |
| 306 | 305 |
| 307 html:not(.focus-outline-visible) button:focus.link-button { | 306 html:not(.focus-outline-visible) button:focus.link-button { |
| 308 outline: none; | 307 outline: none; |
| 309 } | 308 } |
| OLD | NEW |