| 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 } |
| 11 | 11 |
| 12 .tree-outline { | 12 .tree-outline { |
| 13 padding: 0; | 13 padding: 0; |
| 14 } | 14 } |
| 15 | 15 |
| 16 .tree-outline ol { | 16 .tree-outline ol { |
| 17 padding: 0; | 17 padding: 0; |
| 18 } | 18 } |
| 19 | 19 |
| 20 .rule-result { | 20 .rule-result { |
| 21 font-size: 11px; | |
| 22 padding: 2px 0 2px 4px; | 21 padding: 2px 0 2px 4px; |
| 23 word-wrap: normal; | 22 word-wrap: normal; |
| 24 white-space: pre; | 23 white-space: pre; |
| 25 cursor: pointer; | 24 cursor: pointer; |
| 26 } | 25 } |
| 27 | 26 |
| 28 .rule-result:hover { | 27 .rule-result:hover { |
| 29 background-color: rgba(121, 121, 121, 0.1); | 28 background-color: rgba(121, 121, 121, 0.1); |
| 30 } | 29 } |
| 31 | 30 |
| 32 .rule-result .rule-result-file-name { | 31 .rule-result .rule-result-file-name { |
| 33 font-weight: bold; | 32 font-weight: bold; |
| 34 color: #222; | 33 color: #222; |
| 35 } | 34 } |
| 36 | 35 |
| 37 .rule-result .rule-result-matches-count { | 36 .rule-result .rule-result-matches-count { |
| 38 margin-left: 5px; | 37 margin-left: 5px; |
| 39 color: #222; | 38 color: #222; |
| 40 } | 39 } |
| 41 | 40 |
| 42 li.show-more-matches { | 41 li.show-more-matches { |
| 43 padding: 4px 0; | 42 padding: 4px 0; |
| 44 color: #222; | 43 color: #222; |
| 45 cursor: pointer; | 44 cursor: pointer; |
| 46 font-size: 11px; | |
| 47 margin-left: 20px; | 45 margin-left: 20px; |
| 48 } | 46 } |
| 49 | 47 |
| 50 li.show-more-matches:hover { | 48 li.show-more-matches:hover { |
| 51 text-decoration: underline; | 49 text-decoration: underline; |
| 52 } | 50 } |
| 53 | 51 |
| 54 li.rule-match { | 52 li.rule-match { |
| 55 word-wrap: normal; | 53 word-wrap: normal; |
| 56 white-space: pre; | 54 white-space: pre; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 78 | 76 |
| 79 .tree-outline .devtools-link { | 77 .tree-outline .devtools-link { |
| 80 text-decoration: none; | 78 text-decoration: none; |
| 81 display: block; | 79 display: block; |
| 82 flex: auto; | 80 flex: auto; |
| 83 } | 81 } |
| 84 | 82 |
| 85 li.rule-match .rule-match-content { | 83 li.rule-match .rule-match-content { |
| 86 color: #000; | 84 color: #000; |
| 87 } | 85 } |
| OLD | NEW |