| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 /** | 5 /** |
| 6 * @fileoverview | 6 * @fileoverview |
| 7 * Common styles for Material Design settings. | 7 * Common styles for Material Design settings. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 paper-button { | 10 paper-button { |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 border-top: 1px solid #e0e0e0; | 86 border-top: 1px solid #e0e0e0; |
| 87 display: block; | 87 display: block; |
| 88 min-height: 20px; | 88 min-height: 20px; |
| 89 padding: 8px 16px; | 89 padding: 8px 16px; |
| 90 } | 90 } |
| 91 | 91 |
| 92 .settings-box:first-of-type { | 92 .settings-box:first-of-type { |
| 93 border-top: none; | 93 border-top: none; |
| 94 } | 94 } |
| 95 | 95 |
| 96 .settings-box .secondary { |
| 97 color: #969696; |
| 98 } |
| 99 |
| 96 .split { | 100 .split { |
| 97 display: flex; | 101 display: flex; |
| 98 } | 102 } |
| 99 | 103 |
| 100 .split .start { | 104 .split .start { |
| 101 flex: auto; | 105 flex: auto; |
| 102 } | 106 } |
| 103 | 107 |
| 104 .settings-box paper-item iron-icon { | 108 .settings-box paper-item iron-icon { |
| 105 /* Same padding as paper-icon-button. */ | 109 /* Same padding as paper-icon-button. */ |
| 106 padding: 8px; | 110 padding: 8px; |
| 107 } | 111 } |
| OLD | NEW |