Files
pathfinder/sass/layout/module/_system_signature.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

71 lines
1.4 KiB
SCSS

.pf-system-signature-module {
.progress-label-right {
margin-right: 20px;
margin-left: 10px;
vertical-align: middle;
font-size: 11px;
}
// progress bar
.pf-system-progress-scanned {
display: inline-block;
margin-left: 20px;
width: calc(100% - 230px);
.progress {
margin-bottom: 3px; // overwrite default
}
}
// delete signature button
.pf-sig-table-clear-button {
will-change: color;
color: $red-dark;
}
.pf-sig-table {
// textarea field
// overwrite some styles in order to make <textarea> 100% width
.editable-container.editable-inline {
display: inline;
.control-group {
display: inline;
.editable-input {
display: inline;
}
}
}
.pf-editable-description {
width: 100%;
background-color: $gray-darker;
max-height: 300px;
font-size: 11px;
line-height: 14px;
padding: 3px 6px;
}
.fa-plus {
@extend .pf-dialog-icon-button;
}
}
.pf-sig-table-secondary {
// columns should be "inline" with primary table
// -> therefore "sortable" must be true even if columns should not be sortable -> now "disable" sortable by CSS
th {
pointer-events: none;
&:after {
display: none !important;
}
&.pf-table-counter-cell {
color: transparent; // hide label for counter columns -> no data here
}
}
}
}