modified atree graphics, added full assassin ability tree

This commit is contained in:
ferricles 2022-06-15 22:03:20 -07:00
parent b2fa8a81b6
commit 9036de536b
10 changed files with 1150 additions and 6 deletions

View file

@ -474,11 +474,7 @@ a:hover {
transform: rotate(270deg); transform: rotate(270deg);
} }
/* atree hover */
.atree-selected {
border: 5px solid blue;
border-radius: 50%;
}
.hide-scroll { .hide-scroll {
-ms-overflow-style: none; /* Internet Explorer 10+ */ -ms-overflow-style: none; /* Internet Explorer 10+ */

File diff suppressed because it is too large Load diff

View file

@ -621,10 +621,12 @@ function construct_AT(elem, tree) {
if (tooltip.style.display == "block") { if (tooltip.style.display == "block") {
tooltip.style.display = "none"; tooltip.style.display = "none";
this.classList.remove("atree-selected"); this.classList.remove("atree-selected");
this.style.backgroundImage = 'url("../media/atree/node.png")';
} }
else { else {
tooltip.style.display = "block"; tooltip.style.display = "block";
this.classList.add("atree-selected"); this.classList.add("atree-selected");
this.style.backgroundImage = 'url("../media/atree/node-selected.png")';
} }
}); });
}; };

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 718 B

After

Width:  |  Height:  |  Size: 694 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB