Skip to content

Commit 605c474

Browse files
committedAug 26, 2014
adding toggle-off and toggle-on
1 parent 6a5d59f commit 605c474

File tree

10 files changed

+30
-2
lines changed

10 files changed

+30
-2
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[Font Awesome v4.2.0](http://fontawesome.io)
22
###The iconic font and CSS framework
33

4-
Font Awesome is a full suite of 470 pictographic icons for easy scalable vector graphics on websites,
4+
Font Awesome is a full suite of 472 pictographic icons for easy scalable vector graphics on websites,
55
created and maintained by [Dave Gandy](http://twitter.com/davegandy).
66
Stay up to date [@fontawesome](http://twitter.com/fontawesome).
77

‎css/font-awesome.css

+6
Original file line numberDiff line numberDiff line change
@@ -1640,3 +1640,9 @@
16401640
.fa-lastfm-square:before {
16411641
content: "\f203";
16421642
}
1643+
.fa-toggle-off:before {
1644+
content: "\f204";
1645+
}
1646+
.fa-toggle-on:before {
1647+
content: "\f205";
1648+
}

‎css/font-awesome.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎fonts/FontAwesome.otf

228 Bytes
Binary file not shown.

‎less/icons.less

+2
Original file line numberDiff line numberDiff line change
@@ -539,3 +539,5 @@
539539
.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }
540540
.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }
541541
.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }
542+
.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }
543+
.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }

‎less/variables.less

+2
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,8 @@
493493
@fa-var-tint: "\f043";
494494
@fa-var-toggle-down: "\f150";
495495
@fa-var-toggle-left: "\f191";
496+
@fa-var-toggle-off: "\f204";
497+
@fa-var-toggle-on: "\f205";
496498
@fa-var-toggle-right: "\f152";
497499
@fa-var-toggle-up: "\f151";
498500
@fa-var-trash: "\f1f8";

‎scss/_icons.scss

+2
Original file line numberDiff line numberDiff line change
@@ -539,3 +539,5 @@
539539
.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; }
540540
.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; }
541541
.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; }
542+
.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; }
543+
.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; }

‎scss/_variables.scss

+2
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,8 @@ $fa-var-times-circle-o: "\f05c";
493493
$fa-var-tint: "\f043";
494494
$fa-var-toggle-down: "\f150";
495495
$fa-var-toggle-left: "\f191";
496+
$fa-var-toggle-off: "\f204";
497+
$fa-var-toggle-on: "\f205";
496498
$fa-var-toggle-right: "\f152";
497499
$fa-var-toggle-up: "\f151";
498500
$fa-var-trash: "\f1f8";
228 Bytes
Binary file not shown.

‎src/icons.yml

+14
Original file line numberDiff line numberDiff line change
@@ -3504,3 +3504,17 @@ icons:
35043504
created: 4.2
35053505
categories:
35063506
- Brand Icons
3507+
3508+
- name: Toggle Off
3509+
id: toggle-off
3510+
unicode: f204
3511+
created: 4.2
3512+
categories:
3513+
- Web Application Icons
3514+
3515+
- name: Toggle On
3516+
id: toggle-on
3517+
unicode: f205
3518+
created: 4.2
3519+
categories:
3520+
- Web Application Icons

0 commit comments

Comments
 (0)
Please sign in to comment.