| OLD | NEW |
| (Empty) |
| 1 .flame-chart-main-pane { | |
| 2 overflow: hidden; | |
| 3 } | |
| 4 | |
| 5 .flame-chart-marker-highlight-element { | |
| 6 position: absolute; | |
| 7 top: 0; | |
| 8 height: 20px; | |
| 9 width: 4px; | |
| 10 margin: 0 -2px; | |
| 11 content: ""; | |
| 12 display: block; | |
| 13 } | |
| 14 | |
| 15 .flame-chart-highlight-element { | |
| 16 background-color: black; | |
| 17 position: absolute; | |
| 18 opacity: 0.2; | |
| 19 pointer-events: none; | |
| 20 } | |
| 21 | |
| 22 .flame-chart-selected-element { | |
| 23 position: absolute; | |
| 24 pointer-events: none; | |
| 25 border-color: rgb(56, 121, 217); | |
| 26 border-width: 1px; | |
| 27 border-style: solid; | |
| 28 background-color: rgba(56, 121, 217, 0.2); | |
| 29 } | |
| 30 | |
| 31 .flame-chart-v-scroll { | |
| 32 position: absolute; | |
| 33 top: 0; | |
| 34 right: 0; | |
| 35 bottom: 0; | |
| 36 overflow-x: hidden; | |
| 37 z-index: 200; | |
| 38 padding-left: 1px; | |
| 39 } | |
| 40 | |
| 41 .flame-chart-v-scroll.always-show-scrollbar { | |
| 42 overflow-y: scroll; | |
| 43 } | |
| 44 | |
| 45 :host-context(.platform-mac) .flame-chart-v-scroll { | |
| 46 right: 2px; | |
| 47 top: 3px; | |
| 48 bottom: 3px; | |
| 49 } | |
| 50 | |
| 51 /* force non-overlay scrollbars */ | |
| 52 :host-context(.platform-mac) ::-webkit-scrollbar { | |
| 53 width: 8px; | |
| 54 } | |
| 55 | |
| 56 :host-context(.platform-mac) ::-webkit-scrollbar-thumb { | |
| 57 background-color: hsla(0, 0%, 56%, 0.6); | |
| 58 border-radius: 50px; | |
| 59 } | |
| 60 | |
| 61 :host-context(.platform-mac) .flame-chart-v-scroll:hover::-webkit-scrollbar-thum
b { | |
| 62 background-color: hsla(0, 0%, 25%, 0.6); | |
| 63 } | |
| 64 | |
| 65 .flame-chart-selection-overlay { | |
| 66 position: absolute; | |
| 67 z-index: 100; | |
| 68 background-color: rgba(56, 121, 217, 0.3); | |
| 69 border-color: rgb(16, 81, 177); | |
| 70 border-width: 0 1px; | |
| 71 border-style: solid; | |
| 72 pointer-events: none; | |
| 73 top: 0; | |
| 74 bottom: 0; | |
| 75 text-align: center; | |
| 76 } | |
| 77 | |
| 78 .flame-chart-selection-overlay .time-span { | |
| 79 white-space: nowrap; | |
| 80 position: absolute; | |
| 81 left: 0; | |
| 82 right: 0; | |
| 83 bottom: 0; | |
| 84 } | |
| 85 | |
| 86 .flame-chart-entry-info:not(:empty) { | |
| 87 z-index: 2000; | |
| 88 position: absolute; | |
| 89 background-color: white; | |
| 90 pointer-events: none; | |
| 91 padding: 4px 8px; | |
| 92 white-space: nowrap; | |
| 93 max-width: 80%; | |
| 94 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), | |
| 95 0 2px 4px rgba(0, 0, 0, 0.2), | |
| 96 0 2px 6px rgba(0, 0, 0, 0.1); | |
| 97 } | |
| 98 | |
| 99 .flame-chart-entry-info table tr td:empty { | |
| 100 padding: 0; | |
| 101 } | |
| 102 | |
| 103 .flame-chart-entry-info table tr td:not(:empty) { | |
| 104 padding: 0 5px; | |
| 105 white-space: nowrap; | |
| 106 } | |
| 107 | |
| 108 .flame-chart-entry-info table tr td:first-child { | |
| 109 font-weight: bold; | |
| 110 } | |
| 111 | |
| 112 .flame-chart-entry-info table tr td span { | |
| 113 margin-right: 5px; | |
| 114 } | |
| OLD | NEW |