| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 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 .crumbs { | 7 .crumbs { |
| 8 display: inline-block; | 8 display: inline-block; |
| 9 pointer-events: auto; | 9 pointer-events: auto; |
| 10 cursor: default; | 10 cursor: default; |
| 11 font-size: 11px; | |
| 12 line-height: 17px; | 11 line-height: 17px; |
| 13 white-space: nowrap; | 12 white-space: nowrap; |
| 14 } | 13 } |
| 15 | 14 |
| 16 .crumbs .crumb { | 15 .crumbs .crumb { |
| 17 display: inline-block; | 16 display: inline-block; |
| 18 padding: 0 7px; | 17 padding: 0 7px; |
| 19 height: 18px; | 18 height: 18px; |
| 20 white-space: nowrap; | 19 white-space: nowrap; |
| 21 } | 20 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 35 | 34 |
| 36 .crumbs .crumb.selected, .crumbs .crumb.selected:hover { | 35 .crumbs .crumb.selected, .crumbs .crumb.selected:hover { |
| 37 background-color: rgb(56, 121, 217); | 36 background-color: rgb(56, 121, 217); |
| 38 color: white; | 37 color: white; |
| 39 text-shadow: rgba(255, 255, 255, 0.5) 0 0 0; | 38 text-shadow: rgba(255, 255, 255, 0.5) 0 0 0; |
| 40 } | 39 } |
| 41 | 40 |
| 42 .crumbs .crumb:hover { | 41 .crumbs .crumb:hover { |
| 43 background-color: rgb(216, 216, 216); | 42 background-color: rgb(216, 216, 216); |
| 44 } | 43 } |
| OLD | NEW |