OLD | NEW |
1 .overview-container { | 1 .overview-container { |
2 overflow: hidden; | 2 overflow: hidden; |
3 position: absolute; | 3 position: absolute; |
4 top: 0; | 4 top: 0; |
5 width: 100%; | 5 width: 100%; |
6 height: 80px; | 6 height: 80px; |
7 } | 7 } |
8 | 8 |
9 .chart-container { | 9 .chart-container { |
10 flex: auto; | 10 flex: auto; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 } | 54 } |
55 | 55 |
56 .flame-chart-selected-element { | 56 .flame-chart-selected-element { |
57 position: absolute; | 57 position: absolute; |
58 pointer-events: none; | 58 pointer-events: none; |
59 border-color: rgb(56, 121, 217); | 59 border-color: rgb(56, 121, 217); |
60 border-width: 2px; | 60 border-width: 2px; |
61 border-style: solid; | 61 border-style: solid; |
62 background-color: rgba(56, 121, 217, 0.2); | 62 background-color: rgba(56, 121, 217, 0.2); |
63 } | 63 } |
| 64 |
| 65 .flame-chart-v-scroll { |
| 66 flex: 0 0 15px; |
| 67 overflow-x: hidden; |
| 68 overflow-y: scroll; |
| 69 } |
OLD | NEW |