[refactor] Enabled Stylelint rule "color-named"

Going with no named colors for consistency.
This commit is contained in:
Steven Evans
2018-07-09 16:00:51 -04:00
parent 79a489d7a9
commit 9f3459a46f
9 changed files with 86 additions and 86 deletions
+9 -9
View File
@@ -28,8 +28,8 @@
font-weight: bold;
padding: 2px;
margin: 6px;
border: 1px solid white;
background-color:black;
border: 1px solid #ffffff;
background-color:#000;
}
.popup-box-button:hover,
@@ -46,8 +46,8 @@
#yes-no-text-input-box-input {
color: var(--my-font-color);
border: 1px solid white;
background-color:black;
border: 1px solid #ffffff;
background-color:#000;
}
.dialog-box-container,
@@ -103,7 +103,7 @@
.dialog-box-close-button:hover,
.dialog-box-close-button:focus,{
color: white;
color: #ffffff;
text-decoration: none;
cursor: pointer;
}
@@ -126,12 +126,12 @@
}
#infiltration-faction-select {
background-color:black;
background-color:#000;
}
/* Generic Yes No Box */
#yes-no-text-input-box-input {
color: white;
color: #ffffff;
}
/* Game Options */
@@ -163,7 +163,7 @@
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px white;
border-radius: 12px #ffffff;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
@@ -171,7 +171,7 @@
#game-options-close-button:hover,
#game-options-close-button:focus {
color: white;
color: #ffffff;
text-decoration: none;
cursor: pointer;
}