diff --git a/js/Reporter.js b/js/Reporter.js index 5456766..79a83f1 100644 --- a/js/Reporter.js +++ b/js/Reporter.js @@ -143,7 +143,7 @@ var List = function(data, sprite) { List.prototype.attach = function(scene) { this.el = $('
'); this.el.append('
'+(this.target==='Stage'?'':this.target+' ')+this.listName); - var c = this.containerEl = $('
').appendTo(this.el).width(this.width-19); + var c = this.containerEl = $('
').appendTo(this.el).width(this.width-13).height(this.height-34); var s = this.scrollbar = $('
').appendTo(this.el); var sb = s.children('.list-scrollbar'); sb.mousedown(function(e){ @@ -186,10 +186,9 @@ List.prototype.update = function(){ this.contents.forEach(function(val,i){ $('
').appendTo(c).append('
'+(i+1),'
'+val); }); - c.height(this.height-26); c.find('.list-index').width(c.find('.list-index').last().width()); - c.find('.list-item').width(c.width()-c.find('.list-index').width()-15) - var s = this.scrollbar.height(this.height-26); + c.find('.list-item').width(c.width()-c.find('.list-index').width()-15); + var s = this.scrollbar.height(c.height()); s.children('.list-scrollbar').height(s.height()/c[0].scrollHeight*s.height()).css('display', s.children('.list-scrollbar').height()===c.height() ? 'none' : 'inline-block'); this.el.find('.list-length').text('length: '+this.contents.length); }; @@ -197,3 +196,4 @@ List.prototype.update = function(){ List.prototype.updateLayer = function() { this.el.css('z-index', this.z); }; + diff --git a/player.css b/player.css index a0ee51d..3aa17b3 100644 --- a/player.css +++ b/player.css @@ -102,7 +102,7 @@ border-width: 2px; background-color: #C1C4C7; padding-left: 3px; - font: bold 10px Verdana, sans-serif; + font: bold 11px sans-serif; position: absolute; } @@ -111,6 +111,7 @@ text-align: center; color: black; font-weight: bold; + margin-bottom: 4px; } .list .list-scrollbar-container { @@ -132,26 +133,26 @@ float: left; padding: 2px; margin-top: 0px; - font: bold 10px monospace; + text-align: right; + font: bold 11px; } .list .list-item { - float: left; - width: 70%; + float: right; height: 16px; overflow: hidden; margin-bottom: 0px; margin-right: 2px; + padding-top: 2px; padding-left: 5px; border-color: white; border-style: solid; border-width: 1px; border-radius: 4px; - background-color: #D94D11; - font-size: 10px; + background-color: #cc5b22; color: white; word-wrap: break-word; - font: bold 10px Verdana, sans-serif; + font: bolder 11px sans-serif; } .list .list-add { @@ -161,7 +162,7 @@ height: 12px; border-radius: 12px; color: #707070; - font: bold 10px Verdana, sans-serif; + font: bold 10px sans-serif; text-align: center; position: absolute; bottom: 2px; @@ -225,3 +226,4 @@ background: url(img/think-bottom.png) transparent no-repeat; } +