From f29b9ef5db7f10e013f35a05befe15918db83b6c Mon Sep 17 00:00:00 2001 From: Erik Flowers Date: Fri, 14 Aug 2015 09:46:18 -0700 Subject: [PATCH] - wind direction was missing from LESS - old files "neutral-cloudy" were still referenced, now deleted --- css/weather-icons.css | 3 ++ css/weather-icons.min.css | 3 ++ less/icon-classes/classes-neutral-cloudy.less | 39 ------------------- .../variables-neutral-cloudy.less | 39 ------------------- less/weather-icons-classes.less | 2 +- less/weather-icons-variables.less | 2 +- 6 files changed, 8 insertions(+), 80 deletions(-) delete mode 100644 less/icon-classes/classes-neutral-cloudy.less delete mode 100644 less/icon-variables/variables-neutral-cloudy.less diff --git a/css/weather-icons.css b/css/weather-icons.css index ca9712a..3a9cd1f 100644 --- a/css/weather-icons.css +++ b/css/weather-icons.css @@ -396,6 +396,9 @@ .wi-hurricane-warning:before { content: "\f0cf"; } +.wi-wind-direction:before { + content: "\f0b1"; +} .wi-alien:before { content: "\f075"; } diff --git a/css/weather-icons.min.css b/css/weather-icons.min.css index f4d65dd..d5915c0 100644 --- a/css/weather-icons.min.css +++ b/css/weather-icons.min.css @@ -349,6 +349,9 @@ .wi-hurricane-warning:before { content: "\f0cf"; } +.wi-wind-direction:before { + content: "\f0b1"; +} .wi-alien:before { content: "\f075"; } diff --git a/less/icon-classes/classes-neutral-cloudy.less b/less/icon-classes/classes-neutral-cloudy.less deleted file mode 100644 index 92ab47e..0000000 --- a/less/icon-classes/classes-neutral-cloudy.less +++ /dev/null @@ -1,39 +0,0 @@ -.wi-cloud:before {content: @cloud;} -.wi-cloudy:before {content: @cloudy;} -.wi-cloudy-gusts:before {content: @cloudy-gusts;} -.wi-cloudy-windy:before {content: @cloudy-windy;} -.wi-fog:before {content: @fog;} -.wi-hail:before {content: @hail;} -.wi-rain:before {content: @rain;} -.wi-rain-mix:before {content: @rain-mix;} -.wi-rain-wind:before {content: @rain-wind;} -.wi-showers:before {content: @showers;} -.wi-sleet:before {content: @sleet;} -.wi-snow:before {content: @snow;} -.wi-sprinkle:before {content: @sprinkle;} -.wi-storm-showers:before {content: @storm-showers;} -.wi-thunderstorm:before {content: @thunderstorm;} -.wi-snow-wind:before {content: @snow-wind;} -.wi-snow:before {content: @snow;} -.wi-smog:before {content: @smog;} -.wi-smoke:before {content: @smoke;} -.wi-lightning:before {content: @lightning;} -.wi-raindrops:before {content: @raindrops;} -.wi-raindrop:before {content: @raindrop;} -.wi-dust:before {content: @dust;} -.wi-snowflake-cold:before {content: @snowflake-cold;} -.wi-windy:before {content: @windy;} -.wi-strong-wind:before {content: @strong-wind;} -.wi-sandstorm:before {content: @sandstorm;} -.wi-earthquake:before {content: @earthquake;} -.wi-fire:before {content: @fire;} -.wi-flood:before {content: @flood;} -.wi-meteor:before {content: @meteor;} -.wi-tsunami:before {content: @tsunami;} -.wi-volcano:before {content: @volcano;} -.wi-hurricane:before {content: @hurricane;} -.wi-tornado:before {content: @tornado;} -.wi-small-craft-advisory:before {content: @small-craft-advisory;} -.wi-gale-warning:before {content: @gale-warning;} -.wi-storm-warning:before {content: @storm-warning;} -.wi-hurricane-warning:before {content: @hurricane-warning;} \ No newline at end of file diff --git a/less/icon-variables/variables-neutral-cloudy.less b/less/icon-variables/variables-neutral-cloudy.less deleted file mode 100644 index 39eb13f..0000000 --- a/less/icon-variables/variables-neutral-cloudy.less +++ /dev/null @@ -1,39 +0,0 @@ -@cloud: "\f041"; -@cloudy: "\f013"; -@cloudy-gusts: "\f011"; -@cloudy-windy: "\f012"; -@fog: "\f014"; -@hail: "\f015"; -@rain: "\f019"; -@rain-mix: "\f017"; -@rain-wind: "\f018"; -@showers: "\f01a"; -@sleet: "\f0b5"; -@snow: "\f01b"; -@sprinkle: "\f01c"; -@storm-showers: "\f01d"; -@thunderstorm: "\f01e"; -@snow-wind: "\f064"; -@snow: "\f01b"; -@smog: "\f074"; -@smoke: "\f062"; -@lightning: "\f016"; -@raindrops: "\f04e"; -@raindrop: "\f078"; -@dust: "\f063"; -@snowflake-cold: "\f076"; -@windy: "\f021"; -@strong-wind: "\f050"; -@sandstorm: "\f082"; -@earthquake: "\f0c6"; -@fire: "\f0c7"; -@flood: "\f07c"; -@meteor: "\f071"; -@tsunami: "\f0c5"; -@volcano: "\f0c8"; -@hurricane: "\f073"; -@tornado: "\f056"; -@small-craft-advisory: "\f0cc"; -@gale-warning: "\f0cd"; -@storm-warning: "\f0ce"; -@hurricane-warning: "\f0cf"; \ No newline at end of file diff --git a/less/weather-icons-classes.less b/less/weather-icons-classes.less index f28a9ec..e2a69f6 100644 --- a/less/weather-icons-classes.less +++ b/less/weather-icons-classes.less @@ -1,6 +1,6 @@ @import "icon-classes/classes-day.less"; @import "icon-classes/classes-night.less"; -@import "icon-classes/classes-neutral-cloudy.less"; +@import "icon-classes/classes-neutral.less"; @import "icon-classes/classes-misc.less"; @import "icon-classes/classes-moon.less"; @import "icon-classes/classes-time.less"; diff --git a/less/weather-icons-variables.less b/less/weather-icons-variables.less index 068e685..7f0ee35 100644 --- a/less/weather-icons-variables.less +++ b/less/weather-icons-variables.less @@ -4,6 +4,6 @@ @import "icon-variables/variables-direction.less"; @import "icon-variables/variables-day.less"; @import "icon-variables/variables-night.less"; -@import "icon-variables/variables-neutral-cloudy.less"; +@import "icon-variables/variables-neutral.less"; @import "icon-variables/variables-misc.less";