Bug fix added output padding
This commit is contained in:
parent
7214e0e390
commit
8bdec23881
10
css/main.css
10
css/main.css
|
|
@ -10,7 +10,7 @@
|
|||
#menubox {
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
left : 0px;
|
||||
left: 0px;
|
||||
position: fixed;
|
||||
border-left-width: 2px;
|
||||
border-color: black;
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
#crafting {
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
left : 320px;
|
||||
left: 320px;
|
||||
position: fixed;
|
||||
border-left-width: 2px;
|
||||
border-color: black;
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
#outputbox {
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
left : 640px;
|
||||
left: 640px;
|
||||
position: fixed;
|
||||
border-left-width: 2px;
|
||||
border-right-width: 2px;
|
||||
|
|
@ -55,6 +55,10 @@
|
|||
position: fixed;
|
||||
}
|
||||
|
||||
#output , #outputfull {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
#outputfull {
|
||||
border-top-width: 2px;
|
||||
border-color: black;
|
||||
|
|
|
|||
|
|
@ -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>© MasterGordon &
|
||||
Ph3nix
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -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>")
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue