diff --git a/js/client-teambuilder.js b/js/client-teambuilder.js index 772884588..059a56888 100644 --- a/js/client-teambuilder.js +++ b/js/client-teambuilder.js @@ -1265,7 +1265,7 @@ var pokemon = Tools.getTemplate(res.species); buf += '
'; - buf += '
'; + buf += '
'; buf += '' + (pokemon.species === pokemon.baseSpecies ? pokemon.species : (pokemon.baseSpecies + '-' + pokemon.species.substr(pokemon.baseSpecies.length + 1) + '')) + '
'; buf += '
' + (res.ability || 'No ability') + '
' + (res.item || 'No item') + '
'; buf += '
'; @@ -1292,7 +1292,7 @@ clipboardExpanded: false, clipboardExpand: function () { var $clipboard = $('.teambuilder-clipboard-data'); - $clipboard.animate({height: this.clipboardCount() * 28}, 500, function () { + $clipboard.animate({height: this.clipboardCount() * 34}, 500, function () { setTimeout(function () { $clipboard.focus(); }, 100); }); @@ -1302,7 +1302,7 @@ }, clipboardShrink: function () { var $clipboard = $('.teambuilder-clipboard-data'); - $clipboard.animate({height: 26}, 500); + $clipboard.animate({height: 32}, 500); setTimeout(function () { this.clipboardExpanded = false; @@ -3264,7 +3264,7 @@ if (i !== data.i && i !== data.i + 1) { buf += '
  • '; } - buf += ' ' + Tools.escapeHTML(set.name) + ''; + buf += ' ' + Tools.escapeHTML(set.name) + ''; } if (i !== data.i && i !== data.i + 1) { buf += '
  • '; diff --git a/style/client.css b/style/client.css index 70a76fd5d..8aff49810 100644 --- a/style/client.css +++ b/style/client.css @@ -2640,8 +2640,8 @@ a.ilink.yours { } .teambuilder-clipboard-container { - height: 52px; - max-width: 455px; + height: 58px; + max-width: 463px; font-size: 8pt; padding: 4px; position: relative; @@ -2661,8 +2661,8 @@ a.ilink.yours { } .teambuilder-clipboard-data { display: block; - width: 447px; - height: 26px; + width: 455px; + height: 32px; overflow: hidden; cursor: pointer; @@ -2687,16 +2687,16 @@ a.ilink.yours { border: 1px solid #BBBBBB; } .teambuilder-clipboard-data .result { - height: 26px; + height: 32px; } .teambuilder-clipboard-data span { display: block; - height: 24px; + height: 30px; float: left; } .teambuilder-clipboard-data .icon { - width: 32px; + width: 40px; } .teambuilder-clipboard-data .species { width: 100px; @@ -2727,7 +2727,7 @@ a.ilink.yours { width: 385px; position: absolute; - top: 34px; + top: 40px; right: 8px; } .teambuilder-clipboard-button-left {