diff --git a/chrome/content/mailhops.js b/chrome/content/mailhops.js index d757c32..8eebb69 100644 --- a/chrome/content/mailhops.js +++ b/chrome/content/mailhops.js @@ -757,6 +757,7 @@ mailHops.displayResult = function ( header_route, response, meta, lookup_url ){ //set weather of sender if(weather){ mailHops.resultTextDataPane3.style.display = 'block'; + mailHops.resultTextDataPane3.setAttribute('tooltiptext',new Date(weather.time*1000)); mailHops.resultTextDataPane3.value = weather.summary+' '+Math.round(weather.temp)+'\u00B0'; mailHops.resultTextDataPane3.style.backgroundImage = 'url('+mailHops.getWeatherIcon(weather.icon)+')'; } @@ -1034,7 +1035,7 @@ mailHops.getWeatherIcon = function(icon){ , 'sleet': {'day':'rain','night':'rain'} , 'wind': {'day':'clouds','night':'clouds'} , 'fog': {'day':'clouds','night':'clouds'} - , 'cloudy': {'day':'cloudy','night':'cloudy_night'} + , 'cloudy': {'day':'clouds','night':'cloudy_night'} , 'partly-cloudy-day': {'day':'cloudy','night':'cloudy'} , 'partly-cloudy-night': {'day':'cloudy_night','night':'cloudy_night'} , 'hail': {'day':'rain','night':'rain'} diff --git a/chrome/skin/classic/mailhops.css b/chrome/skin/classic/mailhops.css index 65a8d44..6c10a50 100644 --- a/chrome/skin/classic/mailhops.css +++ b/chrome/skin/classic/mailhops.css @@ -64,12 +64,12 @@ button { background-repeat: no-repeat; } -.mailhopsHost, .mailhopsHostPref{ +.mailhopsHost{ background-image: url(chrome://mailhops/content/images/host.png); background-repeat: no-repeat; } -.mailhopsSecure, .mailhopsSecurePref{ +.mailhopsSecure{ background-image: url(chrome://mailhops/content/images/secure.png); background-repeat: no-repeat; } diff --git a/mailhops.xpi b/mailhops.xpi index f5a9e8e..63f4cea 100644 Binary files a/mailhops.xpi and b/mailhops.xpi differ