| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. | 2 * Copyright 2016 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 :host { | 7 :host { |
| 8 padding: 0; | 8 padding: 0; |
| 9 margin: 0; | 9 margin: 0; |
| 10 } | 10 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 cursor: pointer; | 25 cursor: pointer; |
| 26 } | 26 } |
| 27 | 27 |
| 28 li.search-result:hover { | 28 li.search-result:hover { |
| 29 background-color: rgba(121, 121, 121, 0.1); | 29 background-color: rgba(121, 121, 121, 0.1); |
| 30 } | 30 } |
| 31 | 31 |
| 32 li.search-result .search-result-file-name { | 32 li.search-result .search-result-file-name { |
| 33 font-weight: bold; | 33 font-weight: bold; |
| 34 color: #222; | 34 color: #222; |
| 35 white-space: normal; |
| 35 } | 36 } |
| 36 | 37 |
| 37 li.search-result .search-result-matches-count { | 38 li.search-result .search-result-matches-count { |
| 38 margin-left: 5px; | 39 margin-left: 5px; |
| 39 color: #222; | 40 color: #222; |
| 40 } | 41 } |
| 41 | 42 |
| 42 li.show-more-matches { | 43 li.show-more-matches { |
| 43 padding: 4px 0; | 44 padding: 4px 0; |
| 44 color: #222; | 45 color: #222; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 91 |
| 91 .tree-outline .devtools-link { | 92 .tree-outline .devtools-link { |
| 92 text-decoration: none; | 93 text-decoration: none; |
| 93 display: block; | 94 display: block; |
| 94 flex: auto; | 95 flex: auto; |
| 95 } | 96 } |
| 96 | 97 |
| 97 li.search-match .search-match-content { | 98 li.search-match .search-match-content { |
| 98 color: #000; | 99 color: #000; |
| 99 } | 100 } |
| OLD | NEW |