From bfbb2ddd346ec1fd692bd43bc2e0c82390d9e400 Mon Sep 17 00:00:00 2001 From: davegandy Date: Fri, 14 Jun 2013 17:23:16 -0400 Subject: [PATCH] adding icon-gear and icon-gears aliases to address #1309 --- css/font-awesome-ie7.css | 6 ++++++ css/font-awesome-ie7.min.css | 2 ++ css/font-awesome.css | 2 ++ css/font-awesome.min.css | 4 ++-- less/font-awesome-ie7.less | 8 ++++++++ less/icons.less | 2 ++ scss/_icons.scss | 2 ++ scss/font-awesome-ie7.scss | 8 ++++++++ src/icons.yml | 4 ++++ 9 files changed, 36 insertions(+), 2 deletions(-) diff --git a/css/font-awesome-ie7.css b/css/font-awesome-ie7.css index 7fdd2b92a..507ebeb3d 100644 --- a/css/font-awesome-ie7.css +++ b/css/font-awesome-ie7.css @@ -127,6 +127,9 @@ a [class*=" icon-"] { .icon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); } +.icon-gear { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} .icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); } @@ -454,6 +457,9 @@ a [class*=" icon-"] { .icon-cogs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); } +.icon-gears { + *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); +} .icon-comments { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); } diff --git a/css/font-awesome-ie7.min.css b/css/font-awesome-ie7.min.css index 58b6ee5c8..d3dae63bd 100644 --- a/css/font-awesome-ie7.min.css +++ b/css/font-awesome-ie7.min.css @@ -24,6 +24,7 @@ a [class^="icon-"],a [class*=" icon-"]{cursor:pointer;} .icon-power-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-signal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-cog{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gear{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-trash{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-home{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-file-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} @@ -133,6 +134,7 @@ a [class^="icon-"],a [class*=" icon-"]{cursor:pointer;} .icon-camera-retro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-key{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-cogs{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gears{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-comments{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-thumbs-up-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-thumbs-down-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} diff --git a/css/font-awesome.css b/css/font-awesome.css index ea7e5b4cc..0e5865444 100644 --- a/css/font-awesome.css +++ b/css/font-awesome.css @@ -428,6 +428,7 @@ a .icon-flip-vertical:before { .icon-signal:before { content: "\f012"; } +.icon-gear:before, .icon-cog:before { content: "\f013"; } @@ -751,6 +752,7 @@ a .icon-flip-vertical:before { .icon-key:before { content: "\f084"; } +.icon-gears:before, .icon-cogs:before { content: "\f085"; } diff --git a/css/font-awesome.min.css b/css/font-awesome.min.css index ff060cf52..5f959d386 100644 --- a/css/font-awesome.min.css +++ b/css/font-awesome.min.css @@ -57,7 +57,7 @@ a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a . .icon-zoom-out:before{content:"\f010";} .icon-power-off:before,.icon-off:before{content:"\f011";} .icon-signal:before{content:"\f012";} -.icon-cog:before{content:"\f013";} +.icon-gear:before,.icon-cog:before{content:"\f013";} .icon-trash:before{content:"\f014";} .icon-home:before{content:"\f015";} .icon-file-alt:before{content:"\f016";} @@ -164,7 +164,7 @@ a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a . .icon-facebook-sign:before{content:"\f082";} .icon-camera-retro:before{content:"\f083";} .icon-key:before{content:"\f084";} -.icon-cogs:before{content:"\f085";} +.icon-gears:before,.icon-cogs:before{content:"\f085";} .icon-comments:before{content:"\f086";} .icon-thumbs-up-alt:before{content:"\f087";} .icon-thumbs-down-alt:before{content:"\f088";} diff --git a/less/font-awesome-ie7.less b/less/font-awesome-ie7.less index 3d808579d..269ab5f81 100644 --- a/less/font-awesome-ie7.less +++ b/less/font-awesome-ie7.less @@ -176,6 +176,10 @@ a [class*=" icon-"] { .ie7icon(''); } +.icon-gear { + .ie7icon(''); +} + .icon-trash { .ie7icon(''); @@ -719,6 +723,10 @@ a [class*=" icon-"] { .ie7icon(''); } +.icon-gears { + .ie7icon(''); +} + .icon-comments { .ie7icon(''); diff --git a/less/icons.less b/less/icons.less index b27336f92..476d201ec 100644 --- a/less/icons.less +++ b/less/icons.less @@ -20,6 +20,7 @@ .icon-power-off:before, .icon-off:before { content: @off; } .icon-signal:before { content: @signal; } +.icon-gear:before, .icon-cog:before { content: @cog; } .icon-trash:before { content: @trash; } .icon-home:before { content: @home; } @@ -129,6 +130,7 @@ .icon-facebook-sign:before { content: @facebook-sign; } .icon-camera-retro:before { content: @camera-retro; } .icon-key:before { content: @key; } +.icon-gears:before, .icon-cogs:before { content: @cogs; } .icon-comments:before { content: @comments; } .icon-thumbs-up-alt:before { content: @thumbs-up-alt; } diff --git a/scss/_icons.scss b/scss/_icons.scss index d2bf890cb..eefda0c9e 100644 --- a/scss/_icons.scss +++ b/scss/_icons.scss @@ -20,6 +20,7 @@ .icon-power-off:before, .icon-off:before { content: $off; } .icon-signal:before { content: $signal; } +.icon-gear:before, .icon-cog:before { content: $cog; } .icon-trash:before { content: $trash; } .icon-home:before { content: $home; } @@ -129,6 +130,7 @@ .icon-facebook-sign:before { content: $facebook-sign; } .icon-camera-retro:before { content: $camera-retro; } .icon-key:before { content: $key; } +.icon-gears:before, .icon-cogs:before { content: $cogs; } .icon-comments:before { content: $comments; } .icon-thumbs-up-alt:before { content: $thumbs-up-alt; } diff --git a/scss/font-awesome-ie7.scss b/scss/font-awesome-ie7.scss index 56ac3ed4b..223e5f4b8 100644 --- a/scss/font-awesome-ie7.scss +++ b/scss/font-awesome-ie7.scss @@ -176,6 +176,10 @@ a [class*=" icon-"] { @include ie7icon(''); } +.icon-gear { + @include ie7icon(''); +} + .icon-trash { @include ie7icon(''); @@ -719,6 +723,10 @@ a [class*=" icon-"] { @include ie7icon(''); } +.icon-gears { + @include ie7icon(''); +} + .icon-comments { @include ie7icon(''); diff --git a/src/icons.yml b/src/icons.yml index 873300c27..c3c8f531a 100644 --- a/src/icons.yml +++ b/src/icons.yml @@ -132,6 +132,8 @@ icons: id: cog unicode: f013 created: 1.0 + aliases: + - gear categories: - Web Application Icons @@ -892,6 +894,8 @@ icons: id: cogs unicode: f085 created: 1.0 + aliases: + - gears categories: - Web Application Icons