Files
pathfinder/sass/layout/module/_system_route.scss
Mark Friedrich a5f29ee2eb - NEW "Thera connections" UI module, closed #829
- 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
2020-03-02 16:42:36 +01:00

48 lines
930 B
SCSS

.pf-system-route-module {
.pf-system-route-table {
width: 100%;
td {
text-transform: capitalize;
.fa-sync, .fa-search {
@extend .pf-dialog-icon-button;
}
.pf-fake-connection {
display: none; // toggled by js see .pf-table-jump-cell
width: 12px;
cursor: pointer;
&[data-disabled] {
cursor: initial;
}
&[class*=' pf-map-connection-wh-size-'] {
width: 25px;
}
&:after {
font-size: 10px;
}
&.pf-map-connection-preserve-mass {
&:after {
content: "\f071";
font-family: "Font Awesome 5 Free";
font-style: normal;
font-weight: bold;
left: calc(50% - 7px);
}
}
}
&.pf-table-jump-cell {
.pf-fake-connection {
display: inline-block;
}
}
}
}
}