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 */ |
| 11 min-width: 0; | 11 min-width: 0; |
|
caseq
2017/06/06 18:06:00
wrong indent! actually, please revert the entire f
| |
| 12 min-height: 0; | 12 min-height: 0; |
| 13 } | 13 } |
| 14 | 14 |
| 15 :host-context(.platform-mac) .monospace, | 15 :host-context(.platform-mac) .monospace, |
| 16 :host-context(.platform-mac) .source-code, | 16 :host-context(.platform-mac) .source-code, |
| 17 .platform-mac .monospace, | 17 .platform-mac .monospace, |
| 18 .platform-mac .source-code { | 18 .platform-mac .source-code { |
| 19 font-size: 11px !important; | 19 font-size: 11px !important; |
| 20 font-family: Menlo, monospace; | 20 font-family: Menlo, monospace; |
| 21 } | 21 } |
| 22 | 22 |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 404 | 404 |
| 405 button.material-button.default:not(:disabled):hover { | 405 button.material-button.default:not(:disabled):hover { |
| 406 background-color: hsla(217, 89%, 58%, 1) !important; | 406 background-color: hsla(217, 89%, 58%, 1) !important; |
| 407 color: white !important; | 407 color: white !important; |
| 408 } | 408 } |
| 409 | 409 |
| 410 button.material-button:not(:disabled):hover { | 410 button.material-button:not(:disabled):hover { |
| 411 background-color: #eee !important; | 411 background-color: #eee !important; |
| 412 color: gray !important; | 412 color: gray !important; |
| 413 } | 413 } |
| OLD | NEW |