mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-11 15:57:33 +01:00
Fixed bug in Changelog text. Properly credited kopelli for Active Server UI Ram usage change
This commit is contained in:
parent
4a56076ba9
commit
1ce9a5308d
2
dist/engine.bundle.js
vendored
2
dist/engine.bundle.js
vendored
File diff suppressed because one or more lines are too long
445
dist/engine.css
vendored
445
dist/engine.css
vendored
@ -1,14 +1,20 @@
|
|||||||
|
* {
|
||||||
|
font-size: 16px;
|
||||||
|
font-family: "Lucida Console", "Lucida Sans Unicode", "Fira Mono", "Consolas", "Courier New", Courier, monospace, "Times New Roman"; }
|
||||||
|
|
||||||
|
*,
|
||||||
|
*:before,
|
||||||
|
*:after {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
vertical-align: top; }
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--my-font-color: #6f3;
|
--my-font-color: #6f3;
|
||||||
--my-background-color: #000;
|
--my-background-color: #000;
|
||||||
--my-highlight-color: #fff; }
|
--my-highlight-color: #fff; }
|
||||||
|
|
||||||
* {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
font-size: 16px;
|
|
||||||
font-family: 'Lucida Console', 'Lucida Sans Unicode', 'Fira Mono', 'Consolas', 'Courier New', Courier, monospace, 'Times New Roman'; }
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: var(--my-background-color); }
|
background-color: var(--my-background-color); }
|
||||||
|
|
||||||
@ -33,6 +39,18 @@ span {
|
|||||||
margin: 4px;
|
margin: 4px;
|
||||||
padding: 4px; }
|
padding: 4px; }
|
||||||
|
|
||||||
|
button[type="button"] {
|
||||||
|
-webkit-transform: translateX(-50%);
|
||||||
|
-moz-transform: translateX(-50%);
|
||||||
|
-ms-transform: translateX(-50%);
|
||||||
|
-o-transform: translateX(-50%);
|
||||||
|
transform: translateX(-50%);
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
bottom: 10px;
|
||||||
|
left: 50%; }
|
||||||
|
|
||||||
#entire-game-container {
|
#entire-game-container {
|
||||||
background-color: transparent; }
|
background-color: transparent; }
|
||||||
|
|
||||||
@ -106,7 +124,8 @@ tr:focus {
|
|||||||
border: 2px solid #fff; }
|
border: 2px solid #fff; }
|
||||||
|
|
||||||
/* Make html links ("a" elements) nice looking buttons with this class */
|
/* Make html links ("a" elements) nice looking buttons with this class */
|
||||||
a:link, a:visited {
|
a:link,
|
||||||
|
a:visited {
|
||||||
color: #fff; }
|
color: #fff; }
|
||||||
|
|
||||||
.a-link-button {
|
.a-link-button {
|
||||||
@ -407,9 +426,9 @@ a:link, a:visited {
|
|||||||
/* Stay in place */
|
/* Stay in place */
|
||||||
right: 0;
|
right: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
height: 205px;
|
height: auto;
|
||||||
/* Full height */
|
/* Full height */
|
||||||
padding: 5px;
|
padding: 8px;
|
||||||
border: 2px solid var(--my-highlight-color);
|
border: 2px solid var(--my-highlight-color);
|
||||||
width: 19%;
|
width: 19%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
@ -419,25 +438,33 @@ a:link, a:visited {
|
|||||||
z-index: 1; }
|
z-index: 1; }
|
||||||
|
|
||||||
#character-overview-text {
|
#character-overview-text {
|
||||||
padding: 4px;
|
|
||||||
margin: 8px;
|
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background-color: #444; }
|
background-color: #444; }
|
||||||
|
|
||||||
|
.character-stat-text {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #444; }
|
||||||
|
|
||||||
|
.character-stat-cell {
|
||||||
|
text-align: right; }
|
||||||
|
|
||||||
#character-overview-save-button,
|
#character-overview-save-button,
|
||||||
#character-overview-options-button {
|
#character-overview-options-button {
|
||||||
color: #aaa;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: bold;
|
|
||||||
-webkit-border-radius: 12px;
|
-webkit-border-radius: 12px;
|
||||||
-moz-border-radius: 12px;
|
-moz-border-radius: 12px;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
-moz-box-shadow: 1px 1px 3px #000;
|
|
||||||
-webkit-box-shadow: 1px 1px 3px #000;
|
-webkit-box-shadow: 1px 1px 3px #000;
|
||||||
|
-moz-box-shadow: 1px 1px 3px #000;
|
||||||
box-shadow: 1px 1px 3px #000;
|
box-shadow: 1px 1px 3px #000;
|
||||||
|
color: #aaa;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
height: 22px;
|
height: 22px;
|
||||||
background-color: #000; }
|
background-color: #000; }
|
||||||
|
|
||||||
|
.character-quick-options {
|
||||||
|
padding-top: 5px; }
|
||||||
|
|
||||||
#character-overview-save-button:hover,
|
#character-overview-save-button:hover,
|
||||||
#character-overview-save-button:focus,
|
#character-overview-save-button:focus,
|
||||||
#character-overview-options-button:hover,
|
#character-overview-options-button:hover,
|
||||||
@ -510,6 +537,13 @@ a:link, a:visited {
|
|||||||
.accordion-panel ul > li {
|
.accordion-panel ul > li {
|
||||||
background-color: #555; }
|
background-color: #555; }
|
||||||
|
|
||||||
|
/* override the global <span> styling */
|
||||||
|
#active-scripts-total-production-active,
|
||||||
|
#active-scripts-total-prod-aug-total,
|
||||||
|
#active-scripts-total-prod-aug-avg {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0; }
|
||||||
|
|
||||||
#terminal-container {
|
#terminal-container {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
margin-left: 10%;
|
margin-left: 10%;
|
||||||
@ -588,7 +622,7 @@ a:link, a:visited {
|
|||||||
padding-bottom: 6px;
|
padding-bottom: 6px;
|
||||||
border: 2px solid var(--my-highlight-color);
|
border: 2px solid var(--my-highlight-color);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
font-family: 'Lucida Console', 'Lucida Sans Unicode', 'Fira Mono', 'Consolas', 'Courier New', Courier, monospace, 'Times New Roman'; }
|
font-family: "Lucida Console", "Lucida Sans Unicode", "Fira Mono", "Consolas", "Courier New", Courier, monospace, "Times New Roman"; }
|
||||||
|
|
||||||
.ace_line,
|
.ace_line,
|
||||||
.ace_line * {
|
.ace_line * {
|
||||||
@ -636,6 +670,9 @@ a:link, a:visited {
|
|||||||
color: #fff; }
|
color: #fff; }
|
||||||
|
|
||||||
#script-editor-filename {
|
#script-editor-filename {
|
||||||
|
-webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
||||||
|
-moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
||||||
|
box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
||||||
background-color: #555;
|
background-color: #555;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
float: center;
|
float: center;
|
||||||
@ -643,10 +680,7 @@ a:link, a:visited {
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
margin: 4px;
|
margin: 4px;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
border: 2px solid var(--my-highlight-color);
|
border: 2px solid var(--my-highlight-color); }
|
||||||
-webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
|
||||||
-moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
|
||||||
box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1); }
|
|
||||||
|
|
||||||
#script-editor-status {
|
#script-editor-status {
|
||||||
float: left;
|
float: left;
|
||||||
@ -782,15 +816,15 @@ a:link, a:visited {
|
|||||||
margin-left: 5%; }
|
margin-left: 5%; }
|
||||||
|
|
||||||
.active-scripts-button {
|
.active-scripts-button {
|
||||||
color: #aaa;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: bold;
|
|
||||||
-webkit-border-radius: 12px;
|
-webkit-border-radius: 12px;
|
||||||
-moz-border-radius: 12px;
|
-moz-border-radius: 12px;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
-moz-box-shadow: 1px 1px 3px #000;
|
|
||||||
-webkit-box-shadow: 1px 1px 3px #000;
|
-webkit-box-shadow: 1px 1px 3px #000;
|
||||||
|
-moz-box-shadow: 1px 1px 3px #000;
|
||||||
box-shadow: 1px 1px 3px #000;
|
box-shadow: 1px 1px 3px #000;
|
||||||
|
color: #aaa;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
margin: 4px;
|
margin: 4px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
background-color: #000; }
|
background-color: #000; }
|
||||||
@ -835,13 +869,13 @@ a:link, a:visited {
|
|||||||
display: inline-block; }
|
display: inline-block; }
|
||||||
|
|
||||||
.hacknet-node {
|
.hacknet-node {
|
||||||
|
-webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
||||||
|
-moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
||||||
|
box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
||||||
margin: 6px;
|
margin: 6px;
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
width: 34vw;
|
width: 34vw;
|
||||||
border: 2px solid var(--my-highlight-color);
|
border: 2px solid var(--my-highlight-color); }
|
||||||
-webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
|
||||||
-moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
|
||||||
box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1); }
|
|
||||||
|
|
||||||
.hacknet-node-container {
|
.hacknet-node-container {
|
||||||
display: inline-table; }
|
display: inline-table; }
|
||||||
@ -858,8 +892,7 @@ a:link, a:visited {
|
|||||||
margin: 0 4px;
|
margin: 0 4px;
|
||||||
/* Don't want the vertical margin/padding, just left & right */
|
/* Don't want the vertical margin/padding, just left & right */
|
||||||
padding: 0 4px;
|
padding: 0 4px;
|
||||||
width: 48px;
|
width: 64px; }
|
||||||
/* Four times font-size */ }
|
|
||||||
|
|
||||||
.menu-page-text {
|
.menu-page-text {
|
||||||
width: 70vw; }
|
width: 70vw; }
|
||||||
@ -1097,19 +1130,19 @@ a:link, a:visited {
|
|||||||
margin: 10px; }
|
margin: 10px; }
|
||||||
|
|
||||||
#work-in-progress-cancel-button {
|
#work-in-progress-cancel-button {
|
||||||
|
-webkit-border-radius: 12px;
|
||||||
|
-moz-border-radius: 12px;
|
||||||
|
border-radius: 12px;
|
||||||
|
-webkit-box-shadow: 1px 1px 3px #000;
|
||||||
|
-moz-box-shadow: 1px 1px 3px #000;
|
||||||
|
box-shadow: 1px 1px 3px #000;
|
||||||
color: #aaa;
|
color: #aaa;
|
||||||
float: left;
|
float: left;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
-webkit-border-radius: 12px;
|
|
||||||
-moz-border-radius: 12px;
|
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-radius: 12px;
|
border: 3px solid #fff; }
|
||||||
border: 3px solid #fff;
|
|
||||||
-moz-box-shadow: 1px 1px 3px #000;
|
|
||||||
-webkit-box-shadow: 1px 1px 3px #000;
|
|
||||||
box-shadow: 1px 1px 3px #000; }
|
|
||||||
|
|
||||||
#work-in-progress-cancel-button:hover,
|
#work-in-progress-cancel-button:hover,
|
||||||
#work-in-progress-cancel-button:focus {
|
#work-in-progress-cancel-button:focus {
|
||||||
@ -1202,16 +1235,16 @@ a:link, a:visited {
|
|||||||
padding: 10px; }
|
padding: 10px; }
|
||||||
|
|
||||||
.dialog-box-close-button {
|
.dialog-box-close-button {
|
||||||
float: right;
|
|
||||||
color: #aaa;
|
|
||||||
font-size: 20px;
|
|
||||||
font-weight: bold;
|
|
||||||
-webkit-border-radius: 12px;
|
-webkit-border-radius: 12px;
|
||||||
-moz-border-radius: 12px;
|
-moz-border-radius: 12px;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
-moz-box-shadow: 1px 1px 3px #000;
|
|
||||||
-webkit-box-shadow: 1px 1px 3px #000;
|
-webkit-box-shadow: 1px 1px 3px #000;
|
||||||
box-shadow: 1px 1px 3px #000; }
|
-moz-box-shadow: 1px 1px 3px #000;
|
||||||
|
box-shadow: 1px 1px 3px #000;
|
||||||
|
float: right;
|
||||||
|
color: #aaa;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: bold; }
|
||||||
|
|
||||||
#log-box-close {
|
#log-box-close {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
@ -1271,18 +1304,18 @@ a:link, a:visited {
|
|||||||
width: 49%; }
|
width: 49%; }
|
||||||
|
|
||||||
#game-options-close-button {
|
#game-options-close-button {
|
||||||
|
-webkit-border-radius: 12px;
|
||||||
|
-moz-border-radius: 12px;
|
||||||
|
border-radius: 12px;
|
||||||
|
-webkit-box-shadow: 1px 1px 3px #000;
|
||||||
|
-moz-box-shadow: 1px 1px 3px #000;
|
||||||
|
box-shadow: 1px 1px 3px #000;
|
||||||
color: #aaa;
|
color: #aaa;
|
||||||
float: right;
|
float: right;
|
||||||
margin: 4px;
|
margin: 4px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: bold;
|
font-weight: bold; }
|
||||||
-webkit-border-radius: 12px;
|
|
||||||
-moz-border-radius: 12px;
|
|
||||||
border-radius: 12px #fff;
|
|
||||||
-moz-box-shadow: 1px 1px 3px #000;
|
|
||||||
-webkit-box-shadow: 1px 1px 3px #000;
|
|
||||||
box-shadow: 1px 1px 3px #000; }
|
|
||||||
|
|
||||||
#game-options-close-button:hover,
|
#game-options-close-button:hover,
|
||||||
#game-options-close-button:focus {
|
#game-options-close-button:focus {
|
||||||
@ -1317,9 +1350,8 @@ a:link, a:visited {
|
|||||||
background-color: #444;
|
background-color: #444;
|
||||||
/* Fallback color */
|
/* Fallback color */
|
||||||
color: #fff; }
|
color: #fff; }
|
||||||
|
#interactive-tutorial-container > strong {
|
||||||
#interactive-tutorial-container > strong {
|
background-color: #444; }
|
||||||
background-color: #444; }
|
|
||||||
|
|
||||||
#interactive-tutorial-text {
|
#interactive-tutorial-text {
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
@ -1330,16 +1362,24 @@ a:link, a:visited {
|
|||||||
#interactive-tutorial-exit,
|
#interactive-tutorial-exit,
|
||||||
#interactive-tutorial-next,
|
#interactive-tutorial-next,
|
||||||
#interactive-tutorial-back {
|
#interactive-tutorial-back {
|
||||||
color: #aaa;
|
|
||||||
font-size: 20px;
|
|
||||||
font-weight: bold;
|
|
||||||
-webkit-border-radius: 12px;
|
-webkit-border-radius: 12px;
|
||||||
-moz-border-radius: 12px;
|
-moz-border-radius: 12px;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
-moz-box-shadow: 1px 1px 3px #000;
|
|
||||||
-webkit-box-shadow: 1px 1px 3px #000;
|
-webkit-box-shadow: 1px 1px 3px #000;
|
||||||
|
-moz-box-shadow: 1px 1px 3px #000;
|
||||||
box-shadow: 1px 1px 3px #000;
|
box-shadow: 1px 1px 3px #000;
|
||||||
|
color: #aaa;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: bold;
|
||||||
background-color: #000; }
|
background-color: #000; }
|
||||||
|
#interactive-tutorial-exit:hover, #interactive-tutorial-exit:focus,
|
||||||
|
#interactive-tutorial-next:hover,
|
||||||
|
#interactive-tutorial-next:focus,
|
||||||
|
#interactive-tutorial-back:hover,
|
||||||
|
#interactive-tutorial-back:focus {
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
cursor: pointer; }
|
||||||
|
|
||||||
#interactive-tutorial-exit {
|
#interactive-tutorial-exit {
|
||||||
float: left; }
|
float: left; }
|
||||||
@ -1351,15 +1391,17 @@ a:link, a:visited {
|
|||||||
#interactive-tutorial-next {
|
#interactive-tutorial-next {
|
||||||
float: right; }
|
float: right; }
|
||||||
|
|
||||||
#interactive-tutorial-exit:hover,
|
* {
|
||||||
#interactive-tutorial-exit:focus,
|
font-size: 16px;
|
||||||
#interactive-tutorial-next:hover,
|
font-family: "Lucida Console", "Lucida Sans Unicode", "Fira Mono", "Consolas", "Courier New", Courier, monospace, "Times New Roman"; }
|
||||||
#interactive-tutorial-next:focus,
|
|
||||||
#interactive-tutorial-back:hover,
|
*,
|
||||||
#interactive-tutorial-back:focus {
|
*:before,
|
||||||
color: #fff;
|
*:after {
|
||||||
text-decoration: none;
|
margin: 0;
|
||||||
cursor: pointer; }
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
vertical-align: top; }
|
||||||
|
|
||||||
@-webkit-keyframes LOADERSPINNER {
|
@-webkit-keyframes LOADERSPINNER {
|
||||||
0% {
|
0% {
|
||||||
@ -1461,100 +1503,61 @@ a:link, a:visited {
|
|||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
transform: translate(-50%, -50%) scale(1); } }
|
transform: translate(-50%, -50%) scale(1); } }
|
||||||
|
|
||||||
*, *:before, *:after {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
box-sizing: border-box;
|
|
||||||
vertical-align: top; }
|
|
||||||
|
|
||||||
.loaderoverlay {
|
.loaderoverlay {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: white; }
|
background: #000;
|
||||||
|
|
||||||
.loaderoverlay .loaderspinner,
|
|
||||||
.loaderoverlay .loaderspinner:before,
|
|
||||||
.loaderoverlay .loaderspinner:after {
|
|
||||||
border: 20px solid rgba(0, 0, 0, 0);
|
|
||||||
border-top: 20px solid #ccc;
|
|
||||||
border-bottom: 20px solid #ccc;
|
|
||||||
border-radius: 1000px;
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%; }
|
|
||||||
|
|
||||||
.loaderoverlay .loaderspinner:before,
|
|
||||||
.loaderoverlay .loaderspinner:after {
|
|
||||||
content: ""; }
|
|
||||||
|
|
||||||
.loaderoverlay .loaderspinner {
|
|
||||||
width: 200px;
|
|
||||||
height: 200px;
|
|
||||||
-webkit-animation: LOADERSPINNER 5s linear infinite;
|
|
||||||
-moz-animation: LOADERSPINNER 5s linear infinite;
|
|
||||||
-ms-animation: LOADERSPINNER 5s linear infinite;
|
|
||||||
-o-animation: LOADERSPINNER 5s linear infinite;
|
|
||||||
animation: LOADERSPINNER 5s linear infinite; }
|
|
||||||
|
|
||||||
.loaderoverlay .loaderspinner:before {
|
|
||||||
width: 160px;
|
|
||||||
height: 160px;
|
|
||||||
-webkit-animation: LOADERSPINNER 10s linear infinite;
|
|
||||||
-moz-animation: LOADERSPINNER 10s linear infinite;
|
|
||||||
-ms-animation: LOADERSPINNER 10s linear infinite;
|
|
||||||
-o-animation: LOADERSPINNER 10s linear infinite;
|
|
||||||
animation: LOADERSPINNER 10s linear infinite; }
|
|
||||||
|
|
||||||
.loaderoverlay .loaderspinner:after {
|
|
||||||
width: 120px;
|
|
||||||
height: 120px;
|
|
||||||
-webkit-animation: LOADERSPINNER 5s linear infinite;
|
|
||||||
-moz-animation: LOADERSPINNER 5s linear infinite;
|
|
||||||
-ms-animation: LOADERSPINNER 5s linear infinite;
|
|
||||||
-o-animation: LOADERSPINNER 5s linear infinite;
|
|
||||||
animation: LOADERSPINNER 5s linear infinite; }
|
|
||||||
|
|
||||||
.loaderoverlay .loaderlabel {
|
|
||||||
color: #6f3;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-family: sans-serif;
|
|
||||||
font-size: 22px;
|
|
||||||
font-weight: 700;
|
|
||||||
letter-spacing: 2px;
|
|
||||||
position: absolute;
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
-webkit-animation: LOADERLABEL 5s linear infinite;
|
|
||||||
-moz-animation: LOADERLABEL 5s linear infinite;
|
|
||||||
-ms-animation: LOADERLABEL 5s linear infinite;
|
|
||||||
-o-animation: LOADERLABEL 5s linear infinite;
|
|
||||||
animation: LOADERLABEL 5s linear infinite; }
|
|
||||||
|
|
||||||
button[type="button"] {
|
|
||||||
padding: 0.5rem 1rem;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
bottom: 10px;
|
|
||||||
left: 50%;
|
|
||||||
-webkit-transform: translateX(-50%);
|
|
||||||
-moz-transform: translateX(-50%);
|
|
||||||
-ms-transform: translateX(-50%);
|
|
||||||
-o-transform: translateX(-50%);
|
|
||||||
transform: translateX(-50%); }
|
|
||||||
|
|
||||||
/* Customize */
|
|
||||||
.loaderoverlay {
|
|
||||||
background: #000; }
|
|
||||||
|
|
||||||
.loaderoverlay .loaderspinner,
|
|
||||||
.loaderoverlay .loaderspinner:before,
|
|
||||||
.loaderoverlay .loaderspinner:after {
|
|
||||||
border-top-color: #6f3 !important;
|
|
||||||
border-bottom-color: #6f3 !important; }
|
|
||||||
|
|
||||||
.loaderoverlay .loaderlabel {
|
|
||||||
color: #6f3; }
|
color: #6f3; }
|
||||||
|
.loaderoverlay .loaderspinner, .loaderoverlay .loaderspinner:before, .loaderoverlay .loaderspinner:after {
|
||||||
|
border: 20px solid rgba(0, 0, 0, 0);
|
||||||
|
border-top-color: #6f3;
|
||||||
|
border-bottom-color: #6f3;
|
||||||
|
border-radius: 1000px;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%; }
|
||||||
|
.loaderoverlay .loaderspinner:before,
|
||||||
|
.loaderoverlay .loaderspinner:after {
|
||||||
|
content: ""; }
|
||||||
|
.loaderoverlay .loaderspinner {
|
||||||
|
-webkit-animation: LOADERSPINNER 5s linear infinite;
|
||||||
|
-moz-animation: LOADERSPINNER 5s linear infinite;
|
||||||
|
-ms-animation: LOADERSPINNER 5s linear infinite;
|
||||||
|
-o-animation: LOADERSPINNER 5s linear infinite;
|
||||||
|
animation: LOADERSPINNER 5s linear infinite;
|
||||||
|
width: 200px;
|
||||||
|
height: 200px; }
|
||||||
|
.loaderoverlay .loaderspinner:before {
|
||||||
|
-webkit-animation: LOADERSPINNER 10s linear infinite;
|
||||||
|
-moz-animation: LOADERSPINNER 10s linear infinite;
|
||||||
|
-ms-animation: LOADERSPINNER 10s linear infinite;
|
||||||
|
-o-animation: LOADERSPINNER 10s linear infinite;
|
||||||
|
animation: LOADERSPINNER 10s linear infinite;
|
||||||
|
width: 160px;
|
||||||
|
height: 160px; }
|
||||||
|
.loaderoverlay .loaderspinner:after {
|
||||||
|
-webkit-animation: LOADERSPINNER 5s linear infinite;
|
||||||
|
-moz-animation: LOADERSPINNER 5s linear infinite;
|
||||||
|
-ms-animation: LOADERSPINNER 5s linear infinite;
|
||||||
|
-o-animation: LOADERSPINNER 5s linear infinite;
|
||||||
|
animation: LOADERSPINNER 5s linear infinite;
|
||||||
|
width: 120px;
|
||||||
|
height: 120px; }
|
||||||
|
.loaderoverlay .loaderlabel {
|
||||||
|
-webkit-animation: LOADERLABEL 5s linear infinite;
|
||||||
|
-moz-animation: LOADERLABEL 5s linear infinite;
|
||||||
|
-ms-animation: LOADERLABEL 5s linear infinite;
|
||||||
|
-o-animation: LOADERLABEL 5s linear infinite;
|
||||||
|
animation: LOADERLABEL 5s linear infinite;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-family: sans-serif;
|
||||||
|
font-size: 22px;
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%; }
|
||||||
|
|
||||||
/* css for Missions */
|
/* css for Missions */
|
||||||
/* Hacking missions */
|
/* Hacking missions */
|
||||||
@ -1571,9 +1574,8 @@ button[type="button"] {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
padding-right: 10px; }
|
padding-right: 10px; }
|
||||||
|
.hack-mission-grid::-webkit-scrollbar {
|
||||||
.hack-mission-grid::-webkit-scrollbar {
|
display: none; }
|
||||||
display: none; }
|
|
||||||
|
|
||||||
.hack-mission-node {
|
.hack-mission-node {
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
@ -1581,16 +1583,15 @@ button[type="button"] {
|
|||||||
align-self: center;
|
align-self: center;
|
||||||
justify-self: center;
|
justify-self: center;
|
||||||
display: inline-block; }
|
display: inline-block; }
|
||||||
|
.hack-mission-node p {
|
||||||
.hack-mission-node p {
|
-webkit-user-select: none;
|
||||||
margin-top: 8px;
|
-moz-user-select: none;
|
||||||
color: #fff;
|
-ms-user-select: none;
|
||||||
font-size: 12px;
|
user-select: none;
|
||||||
text-align: center;
|
margin-top: 8px;
|
||||||
-webkit-user-select: none;
|
color: #fff;
|
||||||
-moz-user-select: none;
|
font-size: 12px;
|
||||||
-ms-user-select: none;
|
text-align: center; }
|
||||||
user-select: none; }
|
|
||||||
|
|
||||||
.hack-mission-player-node {
|
.hack-mission-player-node {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@ -1605,55 +1606,61 @@ button[type="button"] {
|
|||||||
background-color: #f00; }
|
background-color: #f00; }
|
||||||
|
|
||||||
.hack-mission-cpu-node {
|
.hack-mission-cpu-node {
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
-moz-border-radius: 50%;
|
|
||||||
-webkit-border-radius: 50%;
|
-webkit-border-radius: 50%;
|
||||||
border-radius: 50%; }
|
-moz-border-radius: 50%;
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%; }
|
||||||
|
|
||||||
.hack-mission-firewall-node {
|
.hack-mission-firewall-node {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
height: 100%; }
|
height: 100%; }
|
||||||
|
|
||||||
.hack-mission-database-node {
|
.hack-mission-database-node {
|
||||||
width: 100%;
|
|
||||||
height: 90%;
|
|
||||||
-webkit-transform: skew(20deg);
|
-webkit-transform: skew(20deg);
|
||||||
-moz-transform: skew(20deg);
|
-moz-transform: skew(20deg);
|
||||||
-o-transform: skew(20deg); }
|
-ms-transform: skew(20deg);
|
||||||
|
-o-transform: skew(20deg);
|
||||||
.hack-mission-database-node p {
|
transform: skew(20deg);
|
||||||
-webkit-transform: skew(-20deg);
|
width: 100%;
|
||||||
-moz-transform: skew(-20deg);
|
height: 90%; }
|
||||||
-o-transform: skew(-20deg);
|
.hack-mission-database-node p {
|
||||||
color: #fff;
|
-webkit-transform: skew(-20deg);
|
||||||
font-size: 12px;
|
-moz-transform: skew(-20deg);
|
||||||
margin-top: 8px;
|
-ms-transform: skew(-20deg);
|
||||||
text-align: center;
|
-o-transform: skew(-20deg);
|
||||||
-webkit-user-select: none;
|
transform: skew(-20deg);
|
||||||
-moz-user-select: none;
|
-webkit-user-select: none;
|
||||||
-ms-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none; }
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-top: 8px;
|
||||||
|
text-align: center; }
|
||||||
|
|
||||||
.hack-mission-transfer-node {
|
.hack-mission-transfer-node {
|
||||||
width: 100%;
|
|
||||||
height: 90%;
|
|
||||||
-webkit-transform: skew(-20deg);
|
-webkit-transform: skew(-20deg);
|
||||||
-moz-transform: skew(-20deg);
|
-moz-transform: skew(-20deg);
|
||||||
-o-transform: skew(-20deg); }
|
-ms-transform: skew(-20deg);
|
||||||
|
-o-transform: skew(-20deg);
|
||||||
.hack-mission-transfer-node p {
|
transform: skew(-20deg);
|
||||||
-webkit-transform: skew(20deg);
|
width: 100%;
|
||||||
-moz-transform: skew(20deg);
|
height: 90%; }
|
||||||
-o-transform: skew(20deg);
|
.hack-mission-transfer-node p {
|
||||||
color: #fff;
|
-webkit-transform: skew(20deg);
|
||||||
font-size: 12px;
|
-moz-transform: skew(20deg);
|
||||||
margin-top: 8px;
|
-ms-transform: skew(20deg);
|
||||||
text-align: center;
|
-o-transform: skew(20deg);
|
||||||
-webkit-user-select: none;
|
transform: skew(20deg);
|
||||||
-moz-user-select: none;
|
-webkit-user-select: none;
|
||||||
-ms-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none; }
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-top: 8px;
|
||||||
|
text-align: center; }
|
||||||
|
|
||||||
.hack-mission-spam-node,
|
.hack-mission-spam-node,
|
||||||
.hack-mission-shield-node {
|
.hack-mission-shield-node {
|
||||||
@ -1769,16 +1776,19 @@ button[type="button"] {
|
|||||||
margin: 2px;
|
margin: 2px;
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
font-size: "12px";
|
font-size: 12px;
|
||||||
color: var(--my-font-color); }
|
color: var(--my-font-color); }
|
||||||
|
|
||||||
.cmpy-mgmt-upgrade-div:hover {
|
.cmpy-mgmt-upgrade-div:hover {
|
||||||
background-color: #333; }
|
background-color: #333; }
|
||||||
|
|
||||||
#bladeburner-container p,
|
.cmpy-mgmt-advertising-info {
|
||||||
#bladeburner-container pre,
|
font-size: 12px; }
|
||||||
|
|
||||||
#bladeburner-container a,
|
#bladeburner-container a,
|
||||||
#bladeburner-container div,
|
#bladeburner-container div,
|
||||||
|
#bladeburner-container p,
|
||||||
|
#bladeburner-container pre,
|
||||||
#bladeburner-container td {
|
#bladeburner-container td {
|
||||||
font-size: 13px; }
|
font-size: 13px; }
|
||||||
|
|
||||||
@ -1787,28 +1797,25 @@ button[type="button"] {
|
|||||||
margin: 7px;
|
margin: 7px;
|
||||||
padding: 7px;
|
padding: 7px;
|
||||||
white-space: pre-wrap; }
|
white-space: pre-wrap; }
|
||||||
|
.bladeburner-action pre {
|
||||||
.bladeburner-action pre {
|
white-space: pre-wrap; }
|
||||||
white-space: pre-wrap; }
|
|
||||||
|
|
||||||
/* Whatever action is currently active */
|
/* Whatever action is currently active */
|
||||||
.bladeburner-active-action {
|
.bladeburner-active-action {
|
||||||
border: 4px solid #fff; }
|
border: 4px solid #fff; }
|
||||||
|
|
||||||
/* Action & Skills panel navigation button */
|
/* Action & Skills panel navigation button */
|
||||||
.bladeburner-nav-button {
|
.bladeburner-nav-button, .bladeburner-nav-button-inactive {
|
||||||
border: 1px solid #fff;
|
border: 1px solid #fff;
|
||||||
color: #fff;
|
margin: 2px;
|
||||||
padding: 2px;
|
padding: 2px; }
|
||||||
margin: 2px; }
|
|
||||||
|
|
||||||
.bladeburner-nav-button:hover {
|
.bladeburner-nav-button {
|
||||||
background-color: #3d4044; }
|
color: #fff; }
|
||||||
|
.bladeburner-nav-button:hover {
|
||||||
|
background-color: #3d4044; }
|
||||||
|
|
||||||
.bladeburner-nav-button-inactive {
|
.bladeburner-nav-button-inactive {
|
||||||
border: 1px solid #fff;
|
|
||||||
padding: 2px;
|
|
||||||
margin: 2px;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: #555;
|
background-color: #555;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
74
dist/vendor.bundle.js
vendored
74
dist/vendor.bundle.js
vendored
File diff suppressed because one or more lines are too long
@ -497,10 +497,10 @@ let CONSTANTS = {
|
|||||||
"* Added getFactionFavorGain() and getCompanyFavorGain() Singularity functions (by hydroflame)<br>" +
|
"* Added getFactionFavorGain() and getCompanyFavorGain() Singularity functions (by hydroflame)<br>" +
|
||||||
"* Accumulated 'bonus' time in Bladeburner is now displayed in the UI (by hydroflame)<br>" +
|
"* Accumulated 'bonus' time in Bladeburner is now displayed in the UI (by hydroflame)<br>" +
|
||||||
"* The Red Pill can now be purchased with negative money (since its supposed to be free) (by hydroflame)<br>" +
|
"* The Red Pill can now be purchased with negative money (since its supposed to be free) (by hydroflame)<br>" +
|
||||||
"* Cranial Signal Processor Augmentations now have the previous generation as a prerequisite. i.e. Cranial Signal Processor - Gen II requires Gen I (by Kline-)<br>"
|
"* Cranial Signal Processor Augmentations now have the previous generation as a prerequisite. i.e. Cranial Signal Processor - Gen II requires Gen I (by Kline-)<br>" +
|
||||||
"* Bladeburner Raid operations can no longer be performed if your estimate of Synthoid communities is zero (by hydroflame)<br>" +
|
"* Bladeburner Raid operations can no longer be performed if your estimate of Synthoid communities is zero (by hydroflame)<br>" +
|
||||||
"* The difficulty of BN-12 now scales faster (by hydroflame)<br>" +
|
"* The difficulty of BN-12 now scales faster (by hydroflame)<br>" +
|
||||||
"* Active Scripts UI now shows a RAM Usage bar for each server<br>" +
|
"* Active Scripts UI now shows a RAM Usage bar for each server (by kopelli)<br>" +
|
||||||
"* Bug Fix: Corrected terminal timestamp format (by kopelli)<br>" +
|
"* Bug Fix: Corrected terminal timestamp format (by kopelli)<br>" +
|
||||||
"* Bug Fix: NetscriptJS scripts should now die properly if they don't have a 'main' function (by hydroflame)<br>" +
|
"* Bug Fix: NetscriptJS scripts should now die properly if they don't have a 'main' function (by hydroflame)<br>" +
|
||||||
"* Various minor UI/QOL fixes by hydroflame, kopelli, and Kline-"
|
"* Various minor UI/QOL fixes by hydroflame, kopelli, and Kline-"
|
||||||
|
Loading…
Reference in New Issue
Block a user