Skip to content

Commit

Permalink
Adding windows minimize, maximize, restore, and close #1582
Browse files Browse the repository at this point in the history
  • Loading branch information
davegandy committed Oct 11, 2016
1 parent 8f5d267 commit 659554c
Show file tree
Hide file tree
Showing 10 changed files with 87 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.7.0](http://fontawesome.io)
### The iconic font and CSS framework

Font Awesome is a full suite of 659 pictographic icons for easy scalable vector graphics on websites,
Font Awesome is a full suite of 664 pictographic icons for easy scalable vector graphics on websites,
created and maintained by [Dave Gandy](https://twitter.com/davegandy).
Stay up to date with the latest release and announcements on Twitter:
[@fontawesome](http://twitter.com/fontawesome).
Expand Down
17 changes: 17 additions & 0 deletions css/font-awesome.css
Original file line number Diff line number Diff line change
Expand Up @@ -2265,6 +2265,23 @@
.fa-podcast:before {
content: "\f2ce";
}
.fa-window-maximize:before {
content: "\f2d0";
}
.fa-window-minimize:before {
content: "\f2d1";
}
.fa-window-restore:before {
content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
content: "\f2d3";
}
.sr-only {
position: absolute;
width: 1px;
Expand Down
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.
7 changes: 7 additions & 0 deletions less/icons.less
Original file line number Diff line number Diff line change
Expand Up @@ -769,3 +769,10 @@
.@{fa-css-prefix}-s15:before,
.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }
.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }
.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }
.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }
.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }
.@{fa-css-prefix}-times-rectangle:before,
.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }
.@{fa-css-prefix}-times-rectangle-o:before,
.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }
7 changes: 7 additions & 0 deletions less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,8 @@
@fa-var-times: "\f00d";
@fa-var-times-circle: "\f057";
@fa-var-times-circle-o: "\f05c";
@fa-var-times-rectangle: "\f2d3";
@fa-var-times-rectangle-o: "\f2d3";
@fa-var-tint: "\f043";
@fa-var-toggle-down: "\f150";
@fa-var-toggle-left: "\f191";
Expand Down Expand Up @@ -760,6 +762,11 @@
@fa-var-wheelchair-alt: "\f29b";
@fa-var-wifi: "\f1eb";
@fa-var-wikipedia-w: "\f266";
@fa-var-window-close: "\f2d3";
@fa-var-window-close-o: "\f2d3";
@fa-var-window-maximize: "\f2d0";
@fa-var-window-minimize: "\f2d1";
@fa-var-window-restore: "\f2d2";
@fa-var-windows: "\f17a";
@fa-var-won: "\f159";
@fa-var-wordpress: "\f19a";
Expand Down
7 changes: 7 additions & 0 deletions scss/_icons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -769,3 +769,10 @@
.#{$fa-css-prefix}-s15:before,
.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; }
.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; }
.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; }
.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; }
.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; }
.#{$fa-css-prefix}-times-rectangle:before,
.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; }
.#{$fa-css-prefix}-times-rectangle-o:before,
.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; }
7 changes: 7 additions & 0 deletions scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,8 @@ $fa-var-ticket: "\f145";
$fa-var-times: "\f00d";
$fa-var-times-circle: "\f057";
$fa-var-times-circle-o: "\f05c";
$fa-var-times-rectangle: "\f2d3";
$fa-var-times-rectangle-o: "\f2d3";
$fa-var-tint: "\f043";
$fa-var-toggle-down: "\f150";
$fa-var-toggle-left: "\f191";
Expand Down Expand Up @@ -760,6 +762,11 @@ $fa-var-wheelchair: "\f193";
$fa-var-wheelchair-alt: "\f29b";
$fa-var-wifi: "\f1eb";
$fa-var-wikipedia-w: "\f266";
$fa-var-window-close: "\f2d3";
$fa-var-window-close-o: "\f2d3";
$fa-var-window-maximize: "\f2d0";
$fa-var-window-minimize: "\f2d1";
$fa-var-window-restore: "\f2d2";
$fa-var-windows: "\f17a";
$fa-var-won: "\f159";
$fa-var-wordpress: "\f19a";
Expand Down
Binary file modified src/assets/font-awesome/fonts/FontAwesome.otf
Binary file not shown.
40 changes: 40 additions & 0 deletions src/icons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6417,3 +6417,43 @@ icons:
created: 4.7
categories:
- Web Application Icons


- name: Window Maximize
id: window-maximize
unicode: f2d0
created: 4.7
categories:
- Web Application Icons

- name: Window Minimize
id: window-minimize
unicode: f2d1
created: 4.7
categories:
- Web Application Icons

- name: Window Restore
id: window-restore
unicode: f2d2
created: 4.7
categories:
- Web Application Icons

- name: Window Close
id: window-close
unicode: f2d3
created: 4.7
aliases:
- times-rectangle
categories:
- Web Application Icons

- name: Window Close Outline
id: window-close-o
unicode: f2d3
created: 4.7
aliases:
- times-rectangle-o
categories:
- Web Application Icons

0 comments on commit 659554c

Please sign in to comment.