mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-20 00:04:22 +02:00
[refactor] Enabled Stylelint rule "color-named"
Going with no named colors for consistency.
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
margin: 10px;
|
||||
padding: 5px;
|
||||
border-radius: 12px;
|
||||
border: 3px solid white;
|
||||
border: 3px solid #ffffff;
|
||||
-moz-box-shadow: 1px 1px 3px #000;
|
||||
-webkit-box-shadow: 1px 1px 3px #000;
|
||||
box-shadow: 1px 1px 3px #000;
|
||||
@@ -33,7 +33,7 @@
|
||||
|
||||
#work-in-progress-cancel-button:hover,
|
||||
#work-in-progress-cancel-button:focus {
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -44,12 +44,12 @@
|
||||
}
|
||||
|
||||
.bitnode {
|
||||
color:blue;
|
||||
color:#00f;
|
||||
}
|
||||
.bitnode-destroyed {
|
||||
color:red;
|
||||
color:#f00;
|
||||
}
|
||||
.bitnode:hover,
|
||||
.bitnode-destroyed:hover {
|
||||
color:white;
|
||||
color:#ffffff;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user