| 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 :host { | 7 :host { |
| 8 display: inline; | 8 display: inline; |
| 9 background-color: #fafafa; |
| 9 } | 10 } |
| 10 | 11 |
| 11 .node-link { | 12 .node-link { |
| 12 cursor: pointer; | 13 cursor: pointer; |
| 13 display: inline; | 14 display: inline; |
| 14 pointer-events: auto; | 15 pointer-events: auto; |
| 15 } | 16 } |
| 16 | 17 |
| 17 .stack-preview-async-description { | 18 .stack-preview-async-description { |
| 18 padding: 3px 0 1px; | 19 padding: 3px 0 1px; |
| 19 font-style: italic; | 20 font-style: italic; |
| 20 } | 21 } |
| 21 | 22 |
| 22 .stack-preview-container .webkit-html-blackbox-link { | 23 .stack-preview-container .webkit-html-blackbox-link { |
| 23 opacity: 0.6; | 24 opacity: 0.6; |
| 24 } | 25 } |
| 25 | 26 |
| 26 .stack-preview-container > tr { | 27 .stack-preview-container > tr { |
| 27 height: 17px; | 28 height: 17px; |
| 29 padding: 0 2px; |
| 28 } | 30 } |
| 29 | 31 |
| 30 .stack-preview-container td { | 32 .stack-preview-container td { |
| 31 white-space: nowrap; | 33 white-space: nowrap; |
| 34 padding: 0 4px; |
| 35 } |
| 36 |
| 37 .stack-preview-container > tr:nth-child(even) { |
| 38 background-color: #f0f0f0; |
| 39 } |
| 40 |
| 41 .stack-preview-container td:last-child { |
| 42 text-align: right; |
| 32 } | 43 } |
| 33 | 44 |
| 34 .node-label-name { | 45 .node-label-name { |
| 35 color: rgb(136, 18, 128); | 46 color: rgb(136, 18, 128); |
| 36 } | 47 } |
| 37 | 48 |
| 38 .node-label-id { | 49 .node-label-id { |
| 39 color: rgb(26, 26, 166); | 50 color: rgb(26, 26, 166); |
| 40 } | 51 } |
| 41 | 52 |
| 42 .node-label-class, .node-label-pseudo { | 53 .node-label-class, .node-label-pseudo { |
| 43 color: rgb(153, 69, 0); | 54 color: rgb(153, 69, 0); |
| 44 } | 55 } |
| OLD | NEW |