| 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 } | 9 } |
| 10 | 10 |
| 11 .node-link { | 11 .node-link { |
| 12 text-decoration: underline; | |
| 13 cursor: pointer; | 12 cursor: pointer; |
| 14 display: inline; | 13 display: inline; |
| 15 } | 14 } |
| 16 | 15 |
| 17 .stack-preview-async-description { | 16 .stack-preview-async-description { |
| 18 padding: 3px 0 1px; | 17 padding: 3px 0 1px; |
| 19 font-style: italic; | 18 font-style: italic; |
| 20 } | 19 } |
| 21 | 20 |
| 22 .stack-preview-container .webkit-html-blackbox-link { | 21 .stack-preview-container .webkit-html-blackbox-link { |
| 23 opacity: 0.6; | 22 opacity: 0.6; |
| 24 } | 23 } |
| 25 | 24 |
| 26 .stack-preview-container > tr { | 25 .stack-preview-container > tr { |
| 27 height: 17px; | 26 height: 17px; |
| 28 } | 27 } |
| 29 | 28 |
| 30 .stack-preview-container td { | 29 .stack-preview-container td { |
| 31 white-space: nowrap; | 30 white-space: nowrap; |
| 32 } | 31 } |
| 32 |
| 33 .node-label-name { |
| 34 color: rgb(136, 18, 128); |
| 35 } |
| 36 |
| 37 .node-label-id { |
| 38 color: rgb(26, 26, 166); |
| 39 } |
| 40 |
| 41 .node-label-class, .node-label-pseudo { |
| 42 color: rgb(153, 69, 0); |
| 43 } |
| OLD | NEW |