Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 * { | 7 * { |
| 8 /* This is required for correct sizing of flex items because we rely | 8 /* This is required for correct sizing of flex items because we rely |
| 9 * on an old version of the flexbox spec. | 9 * on an old version of the flexbox spec. |
| 10 * Longer-term we should remove this, see crbug.com/473625 */ | 10 * Longer-term we should remove this, see crbug.com/473625 */ |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 143 cursor: pointer; | 143 cursor: pointer; |
| 144 text-decoration: underline; | 144 text-decoration: underline; |
| 145 color: rgb(17, 85, 204); | 145 color: rgb(17, 85, 204); |
| 146 } | 146 } |
| 147 | 147 |
| 148 button, | 148 button, |
| 149 input, | 149 input, |
| 150 select { | 150 select { |
| 151 font-family: inherit; | 151 font-family: inherit; |
| 152 font-size: inherit; | 152 font-size: inherit; |
| 153 color: inherit; | 153 /* color: inherit; */ |
|
dgozman
2016/01/14 22:05:21
revert?
| |
| 154 } | 154 } |
| 155 | 155 |
| 156 input { | 156 input { |
| 157 background-color: white; | 157 background-color: white; |
| 158 } | 158 } |
| 159 | 159 |
| 160 :host-context(.-theme-with-dark-background) input[type="checkbox"] { | 160 :host-context(.-theme-with-dark-background) input[type="checkbox"] { |
| 161 -webkit-filter: invert(80%); | 161 -webkit-filter: invert(80%); |
| 162 } | 162 } |
| 163 | 163 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 261 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb ar-track { | 261 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb ar-track { |
| 262 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3); | 262 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3); |
| 263 } | 263 } |
| 264 | 264 |
| 265 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, | 265 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, |
| 266 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark -background ::-webkit-scrollbar-thumb { | 266 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark -background ::-webkit-scrollbar-thumb { |
| 267 border-radius: 2px; | 267 border-radius: 2px; |
| 268 background-color: #333; | 268 background-color: #333; |
| 269 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); | 269 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); |
| 270 } | 270 } |
| OLD | NEW |