- added new "select connection" feature to map - ctrl + click for multiselect, closed #174 - added new "wormhole type" table to "Jump info" dialog, closed #174 - added new re-order drag&drop feature for pannels, #470 closed #234 - fixed PHP-Doc comments - added @throw statements - fixed some Javascript memory leaks with infinite counters - updated "Peity jQuery plugin" `3.2.0` -> `3.2.1`
38 lines
493 B
SCSS
38 lines
493 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;
|
|
&:after {
|
|
content: 's';
|
|
margin-left: 1px;
|
|
}
|
|
}
|
|
|
|
} |