- Upgraded "[_pathfinder_esi_](https://github.com/exodus4d/pathfinder_esi)" Web API client`v1.3.2` → `v2.0.0` - Fixed a js bug where current active(selected) system becomes deselected after system was dragged on map - Fixed a js bug where new auto mapped systems (e.g. after jump) were positioned outside current map scroll viewport - Fixed a js bug where map sync failed after map tabs switch - Fixed blurry map when map zoom was changed - Fixed multiple minor JS bugs where map render/update failed
35 lines
451 B
SCSS
35 lines
451 B
SCSS
// global pie chart styles
|
|
.pf-pie-chart {
|
|
position: relative !important;
|
|
display: table-cell;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
|
|
span {
|
|
display: inline-block;
|
|
}
|
|
|
|
canvas {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
}
|
|
|
|
// pie chart map timer
|
|
.pf-pie-chart-map-timer {
|
|
width: 36px;
|
|
height: 36px;
|
|
margin: 3px;
|
|
|
|
canvas {
|
|
top: 3px;
|
|
left: 3px;
|
|
}
|
|
|
|
span {
|
|
font-size: 10px;
|
|
color: $gray;
|
|
}
|
|
|
|
} |