Merge pull request #6073 from Crazylemon64/visible_chemlevels

Makes the chem dispenser's resource levels display as text
This commit is contained in:
Fox McCloud
2017-01-06 03:04:26 -05:00
committed by GitHub
2 changed files with 23 additions and 3 deletions
File diff suppressed because one or more lines are too long
+21 -1
View File
@@ -31,6 +31,26 @@
float: right;
}
.displayBarText.good {
color: white;
}
.displayBarText.notgood {
color: white;
}
.displayBarText.average {
color: white;
}
.displayBarText.bad {
color: white;
}
.displayBarText.highlight {
color: black;
}
.displayBarFill.good {
color: #ffffff;
background: @good-color;
@@ -54,4 +74,4 @@
.displayBarFill.highlight {
color: #ffffff;
background: @highlight-color;
}
}