Added :q, :x, :wq Vim Ex commands. Added ADR-v2 Pheromone new Augmentation. Fixed bugs and added improvements to Hacking missions.

This commit is contained in:
danielyxie
2017-10-01 21:35:22 -05:00
parent 26fe9eb519
commit 662f30cc38
12 changed files with 576 additions and 345 deletions

View File

@@ -209,7 +209,24 @@ a:link, a:visited {
z-index: 99;
}
.tooltip:hover .tooltiptext {
/* Same thing as a normal tooltip except its a bit higher */
.tooltip .tooltiptexthigh {
visibility: hidden;
width: 300px;
background-color: var(--my-background-color);
border: 2px solid var(--my-highlight-color);;
color: white;
text-align: center;
padding: 4px;
left: 101%;
bottom:-25%;
position: absolute;
z-index: 99;
}
.tooltip:hover .tooltiptext,
.tooltip:hover .tooltiptexthigh {
visibility: visible;
}