Bug fix added output padding

This commit is contained in:
GordonDaFreeman 2018-01-22 20:01:24 +01:00
parent 7214e0e390
commit 8bdec23881
3 changed files with 13 additions and 8 deletions

View File

@ -55,6 +55,10 @@
position: fixed;
}
#output , #outputfull {
padding-left: 5px;
}
#outputfull {
border-top-width: 2px;
border-color: black;

View File

@ -66,6 +66,7 @@
</body>
<div id="container">
<div class="ui-widget" id="bottom-left">
Release 1.0<br>
Thanks to Pyramidalist and his community<br>&copy; MasterGordon &
Ph3nix
</div>

View File

@ -273,13 +273,13 @@ function updateoutput() {
if (allItems[frequieredItems[i]]) {
$("#outputfull").append(
"<span id=\"" + i
+ "\" class=\"ui-widget outputitem splitable\">"
+ "\" class=\"ui-widget notsplitable\">"
+ frequieredCount[i] + "x "
+ allItems[requieredItems[i]].name + "</span><br>")
} else {
$("#outputfull").append(
"<span id=\"" + i
+ "\" class=\"ui-widget outputitem notsplitable\">"
+ "\" class=\"ui-widget notsplitable\">"
+ frequieredCount[i] + "x " + frequieredItems[i]
+ "</span><br>")
}