| 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 h2 { | 10 h2 { |
| 11 color: #9e9e9e; | 11 color: var(--paper-grey-500); |
| 12 font-size: 100%; | 12 font-size: 100%; |
| 13 font-weight: normal; | 13 font-weight: normal; |
| 14 margin-bottom: 20px; | 14 margin-bottom: 20px; |
| 15 margin-top: 30px; | 15 margin-top: 30px; |
| 16 } | 16 } |
| 17 | 17 |
| 18 iron-icon { | 18 iron-icon { |
| 19 color: #969696; | 19 color: #969696; |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 padding-top: 6px; | 92 padding-top: 6px; |
| 93 text-transform: none; | 93 text-transform: none; |
| 94 } | 94 } |
| 95 | 95 |
| 96 .settings-card { | 96 .settings-card { |
| 97 padding: 8px 0; | 97 padding: 8px 0; |
| 98 } | 98 } |
| 99 | 99 |
| 100 .settings-box { | 100 .settings-box { |
| 101 @apply(--layout-center); | 101 @apply(--layout-center); |
| 102 border-top: 1px solid #e0e0e0; | 102 border-top: 1px solid var(--paper-grey-300); |
| 103 display: flex; | 103 display: flex; |
| 104 min-height: 40px; | 104 min-height: 40px; |
| 105 padding: 0 20px; | 105 padding: 0 20px; |
| 106 } | 106 } |
| 107 | 107 |
| 108 .settings-box.first { | 108 .settings-box.first { |
| 109 border-top: none; | 109 border-top: none; |
| 110 } | 110 } |
| 111 | 111 |
| 112 .settings-box.block { | 112 .settings-box.block { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 128 .settings-box paper-item iron-icon { | 128 .settings-box paper-item iron-icon { |
| 129 /* Same padding as paper-icon-button. */ | 129 /* Same padding as paper-icon-button. */ |
| 130 padding: 8px; | 130 padding: 8px; |
| 131 } | 131 } |
| 132 | 132 |
| 133 .vertical-list > div:first-of-type { | 133 .vertical-list > div:first-of-type { |
| 134 border-top: none; | 134 border-top: none; |
| 135 } | 135 } |
| 136 | 136 |
| 137 .vertical-list > div { | 137 .vertical-list > div { |
| 138 border-top: 1px solid #e0e0e0; | 138 border-top: 1px solid var(--paper-grey-300); |
| 139 } | 139 } |
| OLD | NEW |