mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-18 23:38:35 +02:00
Playtesting - Rebalancing, UI improvements, added tooltip for programs, home computer no longer reset on prestige
This commit is contained in:
@@ -201,6 +201,10 @@
|
||||
width: 99%;
|
||||
}
|
||||
|
||||
#create-program-page-text {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.create-program-a-link-button {
|
||||
text-decoration: none;
|
||||
background-color: #555;
|
||||
@@ -210,6 +214,7 @@
|
||||
border-right: 1px solid #333333;
|
||||
border-bottom: 1px solid #333333;
|
||||
border-left: 1px solid #333333;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.create-program-a-link-button-inactive {
|
||||
|
||||
@@ -140,4 +140,27 @@ tr:focus {
|
||||
color: #333;
|
||||
border-radius: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
/* Tool tips (when hovering over an element */
|
||||
.tooltip {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.tooltip .tooltiptext {
|
||||
visibility: hidden;
|
||||
width: 200px;
|
||||
background-color: black;
|
||||
border: 2px solid white;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 4px;
|
||||
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.tooltip:hover .tooltiptext {
|
||||
visibility: visible;
|
||||
}
|
||||
Reference in New Issue
Block a user