OLD | NEW |
(Empty) | |
| 1 /* |
| 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 |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 .blackboxed-message { |
| 8 text-align: center; |
| 9 font-style: italic; |
| 10 padding: 4px; |
| 11 color: #888; |
| 12 background-color: #FFFFC2; |
| 13 } |
| 14 |
| 15 .call-frame-item { |
| 16 padding: 3px 8px 3px 20px; |
| 17 position: relative; |
| 18 min-height: 18px; |
| 19 line-height: 15px; |
| 20 display: flex; |
| 21 flex-wrap: wrap; |
| 22 } |
| 23 |
| 24 .call-frame-item:not(.async-header) { |
| 25 border-top: 1px solid #efefef; |
| 26 } |
| 27 |
| 28 .call-frame-item:not(.async-header):hover { |
| 29 background-color: #eee; |
| 30 } |
| 31 |
| 32 .async-header + .call-frame-item { |
| 33 border-top: 0; |
| 34 } |
| 35 |
| 36 .call-frame-item-title, |
| 37 .call-frame-location { |
| 38 text-overflow: ellipsis; |
| 39 overflow: hidden; |
| 40 white-space: nowrap; |
| 41 } |
| 42 |
| 43 .call-frame-location { |
| 44 color: #888; |
| 45 margin-left: auto; |
| 46 padding: 0 10px 0 10px; |
| 47 } |
| 48 |
| 49 .async-header::before { |
| 50 content: " "; |
| 51 width: 100%; |
| 52 border-top: 1px solid #d8d8d8; |
| 53 margin-top: 8px; |
| 54 position: absolute; |
| 55 z-index: -1; |
| 56 left: 0; |
| 57 } |
| 58 |
| 59 .async-header .call-frame-item-title { |
| 60 font-weight: bold; |
| 61 color: #999; |
| 62 background-color: white; |
| 63 margin-left: -5px; |
| 64 padding: 0 5px; |
| 65 } |
| 66 |
| 67 .blackboxed-call-frame { |
| 68 opacity: 0.6; |
| 69 font-style: italic; |
| 70 } |
| 71 |
| 72 .selected-call-frame-icon { |
| 73 position: absolute; |
| 74 top: 5px; |
| 75 left: 4px; |
| 76 } |
OLD | NEW |