From dd3471842cff364c27bbbad9e383f9c531c81073 Mon Sep 17 00:00:00 2001 From: Shibby Date: Tue, 7 Feb 2012 09:52:37 +0100 Subject: [PATCH] fix iptraffic last 24h graph --- release/src/router/www/ipt-24.asp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/release/src/router/www/ipt-24.asp b/release/src/router/www/ipt-24.asp index 686e89f34f..c53b591418 100644 --- a/release/src/router/www/ipt-24.asp +++ b/release/src/router/www/ipt-24.asp @@ -39,6 +39,7 @@ ul.tabs a, width: 140px; height: 12px; font-size: 9px; + font-weight:bold; } @@ -228,13 +229,13 @@ REMOVE-END */ var theRules = document.styleSheets[2].cssRules; switch (nvram['cstats_labels']) { case '1': // show hostnames only - theRules[theRules.length-1].style.cssText = 'width: 140px;'; + theRules[theRules.length-1].style.cssText = 'width: 140px; font-weight:bold;'; /* REMOVE-BEGIN */ // document.styleSheets[2].deleteRule(theRules.length - 1); /* REMOVE-END */ break; case '2': // show IPs only - theRules[theRules.length-1].style.cssText = 'width: 140px;'; + theRules[theRules.length-1].style.cssText = 'width: 140px; font-weight:bold;'; break; case '0': // show hostnames + IPs default: @@ -379,6 +380,7 @@ function verifyFields(focused, quiet) {   +
-- 2.11.4.GIT