Files
pathfinder/sass/layout/module/_system_route.scss
Mark Friedrich 0c3d57e833 - BC Break: Required _PHP_ version changed >=7.1>=7.2
- NEW "plugin API" for custom UI modules, closed #913
- NEW live "Killstream" for killboard module, closed #909
- NEW "custom layout" UI settings, closed #470
2020-02-01 12:40:17 +01:00

50 lines
972 B
SCSS

.pf-system-route-module {
.pf-system-route-table {
width: 100%;
font-size: 10px;
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;
height: 3px;
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;
}
}
}
}
}