Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

show border of outer horizon even in no_horizon mode to indicate bord… #132

Merged
merged 1 commit into from
Aug 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 11 additions & 14 deletions src/components/NetworkMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,9 @@
<line x1="105" y1="0" x2="-105" y2="0" />
</g>
<g id="coords-min" v-else>
<line
vector-effect="non-scaling-stroke"
x1="0"
y1="-100"
x2="0"
y2="102"
/>
<line
vector-effect="non-scaling-stroke"
x1="102"
y1="0"
x2="-102"
y2="0"
/>
<circle cx="0" cy="0" r="100" />
<line x1="0" y1="-100" x2="0" y2="100" />
<line x1="100" y1="0" x2="-100" y2="0" />
</g>

<g id="sectors">
Expand Down Expand Up @@ -664,10 +653,18 @@ circle#horizon-overlay {
}

#coords-min line {
vector-effect: non-scaling-stroke;
stroke: lightgray;
stroke-width: 1;
}

#coords-min circle {
vector-effect: non-scaling-stroke;
stroke: #f0f0f0;
stroke-width: 2;
fill: none;
}

line {
stroke: #afafaf;
stroke-width: 0.5;
Expand Down