| 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 overflow: hidden; | 10 overflow: hidden; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 border-bottom: 1px solid rgba(0, 0, 0, 0.3); | 22 border-bottom: 1px solid rgba(0, 0, 0, 0.3); |
| 23 } | 23 } |
| 24 | 24 |
| 25 .flame-chart-overview-canvas { | 25 .flame-chart-overview-canvas { |
| 26 position: absolute; | 26 position: absolute; |
| 27 top: 20px; | 27 top: 20px; |
| 28 left: 0; | 28 left: 0; |
| 29 right: 0; | 29 right: 0; |
| 30 bottom: 0; | 30 bottom: 0; |
| 31 } | 31 } |
| 32 |
| 33 .chart-container .entry-info { |
| 34 position: absolute; |
| 35 left: 10px; |
| 36 top: 25px; |
| 37 background-color: rgba(255, 255, 255, 0.8); |
| 38 pointer-events: none; |
| 39 } |
| 40 |
| 41 .chart-container .entry-info .title { |
| 42 font-weight: bold; |
| 43 } |
| OLD | NEW |