mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-11-29 04:23:22 +00:00
* feat(Map): Added an ability to mark signature as EOL * chore: release version v1.39.1 * fix(Map): Add correct styles for switch * fix(Map): Refactor signatures code. Add ability to set EOL for signature marked as EOL * feat(Map): Added EOL status for unsplashed signatures. Show precise time for connection passages on hover. --------- Co-authored-by: achichenkov <aleksei.chichenkov@telleqt.ai>
23 lines
370 B
SCSS
23 lines
370 B
SCSS
@import '@/hooks/Mapper/components/map/styles/eve-common-variables';
|
|
|
|
.Signature {
|
|
position: relative;
|
|
top: 3px;
|
|
display: block;
|
|
|
|
& > .Box {
|
|
width: 13px;
|
|
height: 4px;
|
|
border-radius: 4px;
|
|
color: var(--text-color);
|
|
font-size: 8px;
|
|
text-align: center;
|
|
font-weight: bolder;
|
|
display: block;
|
|
}
|
|
|
|
& > .Eol {
|
|
display: block;
|
|
}
|
|
}
|