mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 21:53:50 +01:00
[refactor] Enabled Stylelint "color-hex-case" rule
This commit is contained in:
parent
9f3459a46f
commit
1eee47dd3e
@ -10,7 +10,7 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
height: 400px; /* Full height */
|
height: 400px; /* Full height */
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: 5px solid #FFFFFF;
|
border: 5px solid #ffffff;
|
||||||
width: 20%;
|
width: 20%;
|
||||||
overflow: auto; /* Enable scroll if needed */
|
overflow: auto; /* Enable scroll if needed */
|
||||||
background-color: #444; /* Fallback color */
|
background-color: #444; /* Fallback color */
|
||||||
|
@ -134,7 +134,7 @@ a:link, a:visited {
|
|||||||
.a-link-button {
|
.a-link-button {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: #555;
|
background-color: #555;
|
||||||
color: #FFFFFF;
|
color: #ffffff;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
border: 1px solid #333333;
|
border: 1px solid #333333;
|
||||||
@ -159,7 +159,7 @@ a:link, a:visited {
|
|||||||
.a-link-button-inactive {
|
.a-link-button-inactive {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: #333;
|
background-color: #333;
|
||||||
color: #FFFFFF;
|
color: #ffffff;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
border: 1px solid #333333;
|
border: 1px solid #333333;
|
||||||
@ -179,11 +179,11 @@ a:link, a:visited {
|
|||||||
/* Make anchor tags ("a" elements) for activated actions */
|
/* Make anchor tags ("a" elements) for activated actions */
|
||||||
.a-link-button-bought {
|
.a-link-button-bought {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: #00AA00;
|
background-color: #00aa00;
|
||||||
color: #FFFFFF;
|
color: #ffffff;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
border: 1px solid #00AA00;
|
border: 1px solid #00aa00;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -315,27 +315,27 @@ a:link, a:visited {
|
|||||||
|
|
||||||
/* Flashing button (Red) */
|
/* Flashing button (Red) */
|
||||||
@-webkit-keyframes glowing {
|
@-webkit-keyframes glowing {
|
||||||
0% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
|
0% { background-color: #b20000; -webkit-box-shadow: 0 0 3px #b20000; }
|
||||||
50% { background-color: #FF0000; -webkit-box-shadow: 0 0 40px #FF0000; }
|
50% { background-color: #ff0000; -webkit-box-shadow: 0 0 40px #ff0000; }
|
||||||
100% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
|
100% { background-color: #b20000; -webkit-box-shadow: 0 0 3px #b20000; }
|
||||||
}
|
}
|
||||||
|
|
||||||
@-moz-keyframes glowing {
|
@-moz-keyframes glowing {
|
||||||
0% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
|
0% { background-color: #b20000; -moz-box-shadow: 0 0 3px #b20000; }
|
||||||
50% { background-color: #FF0000; -moz-box-shadow: 0 0 40px #FF0000; }
|
50% { background-color: #ff0000; -moz-box-shadow: 0 0 40px #ff0000; }
|
||||||
100% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
|
100% { background-color: #b20000; -moz-box-shadow: 0 0 3px #b20000; }
|
||||||
}
|
}
|
||||||
|
|
||||||
@-o-keyframes glowing {
|
@-o-keyframes glowing {
|
||||||
0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
|
0% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
||||||
50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
|
50% { background-color: #ff0000; box-shadow: 0 0 40px #ff0000; }
|
||||||
100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
|
100% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes glowing {
|
@keyframes glowing {
|
||||||
0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
|
0% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
||||||
50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
|
50% { background-color: #ff0000; box-shadow: 0 0 40px #ff0000; }
|
||||||
100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
|
100% { background-color: #b20000; box-shadow: 0 0 3px #b20000; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.flashing-button {
|
.flashing-button {
|
||||||
@ -409,7 +409,7 @@ a:link, a:visited {
|
|||||||
|
|
||||||
#status-text {
|
#status-text {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
color: #FFFFFF;
|
color: #ffffff;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
@ -476,7 +476,7 @@ a:link, a:visited {
|
|||||||
/* Scan analyze links from AutoLink */
|
/* Scan analyze links from AutoLink */
|
||||||
.scan-analyze-link {
|
.scan-analyze-link {
|
||||||
cursor:pointer;
|
cursor:pointer;
|
||||||
color:#FFFFFF;
|
color:#ffffff;
|
||||||
text-decoration:underline;
|
text-decoration:underline;
|
||||||
}
|
}
|
||||||
.scan-analyze-link:hover {
|
.scan-analyze-link:hover {
|
||||||
|
@ -42,7 +42,7 @@ module.exports = {
|
|||||||
// "block-opening-brace-newline-after": "always",
|
// "block-opening-brace-newline-after": "always",
|
||||||
// "block-opening-brace-newline-before": "never-single-line",
|
// "block-opening-brace-newline-before": "never-single-line",
|
||||||
// "block-opening-brace-space-before": "always",
|
// "block-opening-brace-space-before": "always",
|
||||||
// "color-hex-case": "lower",
|
"color-hex-case": "lower",
|
||||||
// "color-hex-length": "short",
|
// "color-hex-length": "short",
|
||||||
"color-named": "never",
|
"color-named": "never",
|
||||||
//"color-no-hex": true,
|
//"color-no-hex": true,
|
||||||
|
Loading…
Reference in New Issue
Block a user