mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
Adding updated build and fixing display bugs with Terminal's 'analyze'
This commit is contained in:
parent
f78f0ec1a7
commit
3051208bcb
2
dist/engine.bundle.js
vendored
2
dist/engine.bundle.js
vendored
File diff suppressed because one or more lines are too long
20
dist/engine.css
vendored
20
dist/engine.css
vendored
@ -89,6 +89,9 @@ tr:focus {
|
|||||||
padding: 12px 8px;
|
padding: 12px 8px;
|
||||||
text-decoration: none; }
|
text-decoration: none; }
|
||||||
|
|
||||||
|
.mainmenu.classic > li a {
|
||||||
|
padding: 16px; }
|
||||||
|
|
||||||
/* Hovering makes them lighter */
|
/* Hovering makes them lighter */
|
||||||
.mainmenu > li a:hover,
|
.mainmenu > li a:hover,
|
||||||
.mainmenu > li a:hover:not(.active),
|
.mainmenu > li a:hover:not(.active),
|
||||||
@ -114,6 +117,10 @@ tr:focus {
|
|||||||
.mainmenu-accordion-header {
|
.mainmenu-accordion-header {
|
||||||
outline: 2px solid #fff; }
|
outline: 2px solid #fff; }
|
||||||
|
|
||||||
|
.mainmenu-accordion-header-classic {
|
||||||
|
border: 2px solid #fff;
|
||||||
|
padding: 16px !important; }
|
||||||
|
|
||||||
/* Plus and minus signs */
|
/* Plus and minus signs */
|
||||||
.mainmenu-accordion-header:after {
|
.mainmenu-accordion-header:after {
|
||||||
content: '\2795';
|
content: '\2795';
|
||||||
@ -125,9 +132,18 @@ tr:focus {
|
|||||||
color: transparent;
|
color: transparent;
|
||||||
text-shadow: 0 0 0 #fff; }
|
text-shadow: 0 0 0 #fff; }
|
||||||
|
|
||||||
.mainmenu-accordion-header.opened {
|
.mainmenu-accordion-header-classic:after {
|
||||||
|
content: '\2795';
|
||||||
|
float: right;
|
||||||
|
font-size: 13px;
|
||||||
|
color: #fff;
|
||||||
|
margin-left: 5px; }
|
||||||
|
|
||||||
|
.mainmenu-accordion-header.opened,
|
||||||
|
.mainmenu-accordion-header-classic.opened {
|
||||||
background-color: #222; }
|
background-color: #222; }
|
||||||
.mainmenu-accordion-header.opened:after {
|
.mainmenu-accordion-header.opened:after,
|
||||||
|
.mainmenu-accordion-header-classic.opened:after {
|
||||||
content: "\2796"; }
|
content: "\2796"; }
|
||||||
|
|
||||||
/* Slide down transition */
|
/* Slide down transition */
|
||||||
|
118
dist/vendor.bundle.js
vendored
118
dist/vendor.bundle.js
vendored
File diff suppressed because one or more lines are too long
@ -30,7 +30,7 @@
|
|||||||
<div id="entire-game-container" style="visibility:hidden;">
|
<div id="entire-game-container" style="visibility:hidden;">
|
||||||
<div id="mainmenu-container">
|
<div id="mainmenu-container">
|
||||||
<!-- Main menu -->
|
<!-- Main menu -->
|
||||||
<ul class="mainmenu">
|
<ul id="mainmenu" class="mainmenu">
|
||||||
<!-- Hacking dropdown -->
|
<!-- Hacking dropdown -->
|
||||||
<li id="hacking-menu-header-li">
|
<li id="hacking-menu-header-li">
|
||||||
<a id="hacking-menu-header" class="mainmenu-accordion-header"> Hacking </a>
|
<a id="hacking-menu-header" class="mainmenu-accordion-header"> Hacking </a>
|
||||||
|
@ -739,9 +739,9 @@ let Terminal = {
|
|||||||
post("Root Access: " + rootAccess);
|
post("Root Access: " + rootAccess);
|
||||||
post("Required hacking skill: " + currServ.requiredHackingSkill);
|
post("Required hacking skill: " + currServ.requiredHackingSkill);
|
||||||
post("Server security level: " + numeralWrapper.format(currServ.hackDifficulty, '0.000a'));
|
post("Server security level: " + numeralWrapper.format(currServ.hackDifficulty, '0.000a'));
|
||||||
post("Chance to hack: " + numeralWrapper.format(calculateHackingChance(currServ) * 100, '0.00%'));
|
post("Chance to hack: " + numeralWrapper.format(calculateHackingChance(currServ), '0.00%'));
|
||||||
post("Time to hack: " + numeralWrapper.format(calculateHackingTime(currServ), '0.000') + " seconds");
|
post("Time to hack: " + numeralWrapper.format(calculateHackingTime(currServ), '0.000') + " seconds");
|
||||||
post("Total money available on server: $" + numeralWrapper.format(currServ.moneyAvailable, '$0,0.00'));
|
post("Total money available on server: " + numeralWrapper.format(currServ.moneyAvailable, '$0,0.00'));
|
||||||
post("Required number of open ports for NUKE: " + currServ.numOpenPortsRequired);
|
post("Required number of open ports for NUKE: " + currServ.numOpenPortsRequired);
|
||||||
|
|
||||||
if (currServ.sshPortOpen) {
|
if (currServ.sshPortOpen) {
|
||||||
|
Loading…
Reference in New Issue
Block a user