diff --git a/code/portal_detail_display_tools.js b/code/portal_detail_display_tools.js
index 63b859b0..b02d40be 100644
--- a/code/portal_detail_display_tools.js
+++ b/code/portal_detail_display_tools.js
@@ -110,7 +110,7 @@ window.renderResonatorDetails = function(slot, level, nrg, dist, nick) {
var max = RESO_NRG[level];
var fillGrade = nrg/max*100;
- var inf = 'energy:\t\t' + nrg + ' / ' + max + '\n'
+ var inf = 'energy:\t\t' + nrg + ' / ' + max + ' (' + Math.round(fillGrade) + '%)' + '\n'
+ 'level:\t\t' + level +'\n'
+ 'distance:\t' + dist + 'm\n'
+ 'owner:\t\t' + nick + '\n'
@@ -120,8 +120,7 @@ window.renderResonatorDetails = function(slot, level, nrg, dist, nick) {
var color = (level < 3 ? "#9900FF" : "#FFFFFF");
- var lbar = ' ' + 'L' + level + '  ' + Math.round(fillGrade) + '%' + ' ';
-
+ var lbar = ' ' + level + ' ';
var fill = '';
diff --git a/style.css b/style.css
index d7e86ca0..f0432e50 100644
--- a/style.css
+++ b/style.css
@@ -475,10 +475,8 @@ aside:nth-child(odd) span {
.meter-level {
position: absolute;
- top: 0px;
- left: 8px;
- font-size: 80%;
- line-height: 18px;
+ top: -2px;
+ left: 25px;
text-shadow: 0.0em 0.0em 0.3em #808080;
}
/* links below resos */