mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
5f13bc6336
Updates: – Character Overview box (top right corner) – redesigned and added colours to the attributes. – Added prompt colour in the terminal. – Minor copy fixes (grammar and typos). – Code formatting cleanup. – Character > Stats – Fixed spacing issue when Intelligence is not yet available – Main Menu – Adjusted the spacing and changed the border to outline to improve the readability. – Tooltip boxes (Firefox only) – fixed the issue when tooltips were generating additional spacing around the <br> tags. – Multiple general updates to UI to improve accessibility and readability. Aimed to improve the user experience when playing the game on a smaller screen resolutions. – Accordion/Dropdown buttons – improved the readability of the plus/minus icons. – Added .editorconfig with the most basic settings.
61 lines
1.1 KiB
SCSS
61 lines
1.1 KiB
SCSS
@import "theme";
|
|
|
|
#terminal-container {
|
|
position: fixed;
|
|
margin-left: 10%;
|
|
height: 100%;
|
|
width: 99%;
|
|
overflow: auto;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
#terminal {
|
|
padding-top: 10px;
|
|
padding-left: 10px;
|
|
height: auto;
|
|
width: 70%;
|
|
font-size: $defaultFontSize;
|
|
overflow: auto;
|
|
overflow-y: scroll;
|
|
background-color: var(--my-background-color);
|
|
table-layout: fixed;
|
|
}
|
|
|
|
#terminal-input {
|
|
background-color: var(--my-background-color);
|
|
color: var(--my-font-color);
|
|
transition: height 1s;
|
|
}
|
|
|
|
.terminal-input {
|
|
display: inline-block;
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
border: 0;
|
|
background-color: var(--my-background-color);
|
|
font-size: $defaultFontSize;
|
|
outline: none;
|
|
color: var(--my-font-color);
|
|
}
|
|
|
|
.terminal-line {
|
|
width: 70%;
|
|
word-wrap: break-word;
|
|
hyphens: auto;
|
|
-webkit-hyphens: auto;
|
|
-moz-hyphens: auto;
|
|
}
|
|
|
|
#terminal-input-td {
|
|
display: flex;
|
|
}
|
|
|
|
#terminal-input-header {
|
|
color: var(--my-prompt-color);
|
|
white-space: pre;
|
|
}
|
|
|
|
#terminal-input-text-box {
|
|
flex: 1 1 auto;
|
|
}
|