mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-20 16:22:56 +02:00
[refactor] Enabled Stylelint rule "color-named"
Going with no named colors for consistency.
This commit is contained in:
+20
-20
@@ -84,13 +84,13 @@ tr:focus {
|
||||
.mainmenu>li a:hover:not(.active),
|
||||
.mainmenu>li a:focus {
|
||||
background-color: #777;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/* Panel headers can become active, and they are "lighter" than the rest */
|
||||
.mainmenu>li a.active {
|
||||
background-color: #777;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.mainmenu>li a.active:hover {
|
||||
@@ -101,7 +101,7 @@ tr:focus {
|
||||
.mainmenu-accordion-header:after {
|
||||
content: '\02795';
|
||||
font-size: 13px;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
}
|
||||
@@ -123,12 +123,12 @@ tr:focus {
|
||||
|
||||
/* Borders */
|
||||
.mainmenu-accordion-header {
|
||||
border:2px solid white;
|
||||
border:2px solid #ffffff;
|
||||
}
|
||||
|
||||
/* Make html links ("a" elements) nice looking buttons with this class */
|
||||
a:link, a:visited {
|
||||
color:white;
|
||||
color:#ffffff;
|
||||
}
|
||||
|
||||
.a-link-button {
|
||||
@@ -198,13 +198,13 @@ a:link, a:visited {
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
color:white;
|
||||
background-color:black;
|
||||
color:#ffffff;
|
||||
background-color:#000;
|
||||
}
|
||||
|
||||
.text-input {
|
||||
color:white;
|
||||
background-color:black;
|
||||
color:#ffffff;
|
||||
background-color:#000;
|
||||
}
|
||||
|
||||
/* Notification icon (for create program right now only) */
|
||||
@@ -221,7 +221,7 @@ a:link, a:visited {
|
||||
|
||||
.notification-on {
|
||||
background-color: #fa3e3e;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
border-radius: 2px;
|
||||
padding: 1px 3px;
|
||||
}
|
||||
@@ -244,7 +244,7 @@ a:link, a:visited {
|
||||
width: 300px;
|
||||
background-color: var(--my-background-color);
|
||||
border: 2px solid var(--my-highlight-color);;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
padding: 4px;
|
||||
left: 101%;
|
||||
@@ -259,7 +259,7 @@ a:link, a:visited {
|
||||
width: 300px;
|
||||
background-color: var(--my-background-color);
|
||||
border: 2px solid var(--my-highlight-color);;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
padding: 4px;
|
||||
left: 101%;
|
||||
@@ -276,7 +276,7 @@ a:link, a:visited {
|
||||
width: 300px;
|
||||
background-color: var(--my-background-color);
|
||||
border: 2px solid var(--my-highlight-color);;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
padding: 4px;
|
||||
left: 40%;
|
||||
@@ -298,7 +298,7 @@ a:link, a:visited {
|
||||
padding:1px;
|
||||
margin-left:3px;
|
||||
color:#fff;
|
||||
border:1px solid white;
|
||||
border:1px solid #ffffff;
|
||||
border-radius:5px;
|
||||
display:inline-block;
|
||||
}
|
||||
@@ -441,7 +441,7 @@ a:link, a:visited {
|
||||
#character-overview-text {
|
||||
padding: 4px;
|
||||
margin: 8px;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
background-color: #444;
|
||||
}
|
||||
|
||||
@@ -457,14 +457,14 @@ a:link, a:visited {
|
||||
-webkit-box-shadow: 1px 1px 3px #000;
|
||||
box-shadow: 1px 1px 3px #000;
|
||||
height: 22px;
|
||||
background-color:black;
|
||||
background-color:#000;
|
||||
}
|
||||
|
||||
#character-overview-save-button:hover,
|
||||
#character-overview-save-button:focus,
|
||||
#character-overview-options-button:hover,
|
||||
#character-overview-options-button:focus {
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -487,7 +487,7 @@ a:link, a:visited {
|
||||
.accordion-header {
|
||||
background-color: #444;
|
||||
font-size: 20px;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
margin: 6px 6px 0px 6px;
|
||||
padding: 6px;
|
||||
cursor: pointer;
|
||||
@@ -509,7 +509,7 @@ a:link, a:visited {
|
||||
.accordion-header:after {
|
||||
content: '\02795'; /* "plus" sign (+) */
|
||||
font-size: 13px;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
}
|
||||
@@ -517,7 +517,7 @@ a:link, a:visited {
|
||||
.accordion-header.active:after {
|
||||
content: "\2796"; /* "minus" sign (-) */
|
||||
font-size: 13px;
|
||||
color: white;
|
||||
color: #ffffff;
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user