Skip to content

Commit

Permalink
Merge pull request #113 from midastouchprd/feature/ISSUE-110-highligh…
Browse files Browse the repository at this point in the history
…t-border

Highlight borders show unidentified
  • Loading branch information
marcoaaguiar authored Dec 3, 2024
2 parents 2059b00 + 8d417c1 commit 28b8f9f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/lib/components/ui/tree-node/tree-node.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@
.notable.unidentified,
.ascendancy.unidentified {
background-color: rgba(255, 100, 100, 0.2);
border-color: rgba(255, 100, 100, 1);
}
.keystone {
Expand All @@ -87,16 +86,14 @@
.keystone.unidentified {
background-color: rgba(255, 0, 100, 0.2);
border-color: rgba(255, 0, 100, 1);
}
.small {
background-color: rgba(255, 255, 255, 0.2);
}
.small.unidentified {
background-color: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 100, 100, 1);
background-color: rgba(255, 0, 100, 0.2);
}
.notable.selected {
Expand All @@ -123,6 +120,10 @@
border: 1px solid yellow;
}
.unidentified.highlighted {
border: 1px solid red;
}
@keyframes glow {
0% {
box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
Expand Down

0 comments on commit 28b8f9f

Please sign in to comment.