Skip to content

Commit

Permalink
Adding video player icons #2975.
Browse files Browse the repository at this point in the history
  • Loading branch information
davegandy committed Nov 20, 2015
1 parent 9456bb8 commit 6d0060c
Show file tree
Hide file tree
Showing 10 changed files with 58 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#[Font Awesome v4.5.0](http://fontawesome.io)
###The iconic font and CSS framework

Font Awesome is a full suite of 595 pictographic icons for easy scalable vector graphics on websites,
Font Awesome is a full suite of 599 pictographic icons for easy scalable vector graphics on websites,
created and maintained by [Dave Gandy](http://twitter.com/davegandy).
Stay up to date with the latest release and announcements on Twitter:
[@fontawesome](http://twitter.com/fontawesome).
Expand Down
12 changes: 12 additions & 0 deletions css/font-awesome.css
Original file line number Diff line number Diff line change
Expand Up @@ -2053,3 +2053,15 @@
.fa-scribd:before {
content: "\f28a";
}
.fa-pause-circle:before {
content: "\f28b";
}
.fa-pause-circle-o:before {
content: "\f28c";
}
.fa-stop-circle:before {
content: "\f28d";
}
.fa-stop-circle-o:before {
content: "\f28e";
}
2 changes: 1 addition & 1 deletion css/font-awesome.min.css

Large diffs are not rendered by default.

Binary file modified fonts/FontAwesome.otf
Binary file not shown.
4 changes: 4 additions & 0 deletions less/icons.less
Original file line number Diff line number Diff line change
Expand Up @@ -685,3 +685,7 @@
.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }
.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }
.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }
.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }
.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }
.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }
.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }
4 changes: 4 additions & 0 deletions less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,8 @@
@fa-var-paragraph: "\f1dd";
@fa-var-paste: "\f0ea";
@fa-var-pause: "\f04c";
@fa-var-pause-circle: "\f28b";
@fa-var-pause-circle-o: "\f28c";
@fa-var-paw: "\f1b0";
@fa-var-paypal: "\f1ed";
@fa-var-pencil: "\f040";
Expand Down Expand Up @@ -581,6 +583,8 @@
@fa-var-sticky-note: "\f249";
@fa-var-sticky-note-o: "\f24a";
@fa-var-stop: "\f04d";
@fa-var-stop-circle: "\f28d";
@fa-var-stop-circle-o: "\f28e";
@fa-var-street-view: "\f21d";
@fa-var-strikethrough: "\f0cc";
@fa-var-stumbleupon: "\f1a4";
Expand Down
4 changes: 4 additions & 0 deletions scss/_icons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -685,3 +685,7 @@
.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; }
.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; }
.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; }
.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; }
.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; }
.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; }
.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; }
4 changes: 4 additions & 0 deletions scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,8 @@ $fa-var-paperclip: "\f0c6";
$fa-var-paragraph: "\f1dd";
$fa-var-paste: "\f0ea";
$fa-var-pause: "\f04c";
$fa-var-pause-circle: "\f28b";
$fa-var-pause-circle-o: "\f28c";
$fa-var-paw: "\f1b0";
$fa-var-paypal: "\f1ed";
$fa-var-pencil: "\f040";
Expand Down Expand Up @@ -581,6 +583,8 @@ $fa-var-stethoscope: "\f0f1";
$fa-var-sticky-note: "\f249";
$fa-var-sticky-note-o: "\f24a";
$fa-var-stop: "\f04d";
$fa-var-stop-circle: "\f28d";
$fa-var-stop-circle-o: "\f28e";
$fa-var-street-view: "\f21d";
$fa-var-strikethrough: "\f0cc";
$fa-var-stumbleupon: "\f1a4";
Expand Down
Binary file modified src/assets/font-awesome/fonts/FontAwesome.otf
Binary file not shown.
28 changes: 28 additions & 0 deletions src/icons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5734,3 +5734,31 @@ icons:
created: 4.5
categories:
- Brand Icons

- name: Pause Circle
id: pause-circle
unicode: f28b
created: 4.5
categories:
- Video Player Icons

- name: Pause Circle Outlined
id: pause-circle-o
unicode: f28c
created: 4.5
categories:
- Video Player Icons

- name: Stop Circle
id: stop-circle
unicode: f28d
created: 4.5
categories:
- Video Player Icons

- name: Stop Circle Outlined
id: stop-circle-o
unicode: f28e
created: 4.5
categories:
- Video Player Icons

0 comments on commit 6d0060c

Please sign in to comment.