Skip to content

Commit

Permalink
adding payment icons and doc: paypal, google-wallet, cc-visa, cc-mast…
Browse files Browse the repository at this point in the history
…ercard, cc-amex, cc-discover, cc-paypal, cc-stripe FortAwesome#1009
  • Loading branch information
davegandy committed Aug 24, 2014
1 parent 4df6fec commit df8ca07
Show file tree
Hide file tree
Showing 13 changed files with 145 additions and 9 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.2.0](http://fontawesome.io)
###The iconic font and CSS framework

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

Expand Down
26 changes: 25 additions & 1 deletion css/font-awesome.css
Original file line number Diff line number Diff line change
Expand Up @@ -1567,7 +1567,7 @@
.fa-yelp:before {
content: "\f1e9";
}
.fa-newspaper:before {
.fa-newspaper-o:before {
content: "\f1ea";
}
.fa-wifi:before {
Expand All @@ -1576,3 +1576,27 @@
.fa-calculator:before {
content: "\f1ec";
}
.fa-paypal:before {
content: "\f1ed";
}
.fa-google-wallet:before {
content: "\f1ee";
}
.fa-cc-visa:before {
content: "\f1f0";
}
.fa-cc-mastercard:before {
content: "\f1f1";
}
.fa-cc-discover:before {
content: "\f1f2";
}
.fa-cc-amex:before {
content: "\f1f3";
}
.fa-cc-paypal:before {
content: "\f1f4";
}
.fa-cc-stripe:before {
content: "\f1f5";
}
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.
10 changes: 9 additions & 1 deletion less/icons.less
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,14 @@
.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }
.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }
.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }
.@{fa-css-prefix}-newspaper:before { content: @fa-var-newspaper; }
.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }
.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }
.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }
.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }
.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }
.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }
.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }
.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }
.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }
.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }
.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }
10 changes: 9 additions & 1 deletion less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@
@fa-var-caret-square-o-right: "\f152";
@fa-var-caret-square-o-up: "\f151";
@fa-var-caret-up: "\f0d8";
@fa-var-cc-amex: "\f1f3";
@fa-var-cc-discover: "\f1f2";
@fa-var-cc-mastercard: "\f1f1";
@fa-var-cc-paypal: "\f1f4";
@fa-var-cc-stripe: "\f1f5";
@fa-var-cc-visa: "\f1f0";
@fa-var-certificate: "\f0a3";
@fa-var-chain: "\f0c1";
@fa-var-chain-broken: "\f127";
Expand Down Expand Up @@ -236,6 +242,7 @@
@fa-var-google: "\f1a0";
@fa-var-google-plus: "\f0d5";
@fa-var-google-plus-square: "\f0d4";
@fa-var-google-wallet: "\f1ee";
@fa-var-graduation-cap: "\f19d";
@fa-var-group: "\f0c0";
@fa-var-h-square: "\f0fd";
Expand Down Expand Up @@ -317,7 +324,7 @@
@fa-var-mortar-board: "\f19d";
@fa-var-music: "\f001";
@fa-var-navicon: "\f0c9";
@fa-var-newspaper: "\f1ea";
@fa-var-newspaper-o: "\f1ea";
@fa-var-openid: "\f19b";
@fa-var-outdent: "\f03b";
@fa-var-pagelines: "\f18c";
Expand All @@ -328,6 +335,7 @@
@fa-var-paste: "\f0ea";
@fa-var-pause: "\f04c";
@fa-var-paw: "\f1b0";
@fa-var-paypal: "\f1ed";
@fa-var-pencil: "\f040";
@fa-var-pencil-square: "\f14b";
@fa-var-pencil-square-o: "\f044";
Expand Down
10 changes: 9 additions & 1 deletion scss/_icons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,14 @@
.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; }
.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; }
.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; }
.#{$fa-css-prefix}-newspaper:before { content: $fa-var-newspaper; }
.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; }
.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; }
.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; }
.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; }
.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; }
.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; }
.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; }
.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; }
.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; }
.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; }
.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; }
10 changes: 9 additions & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ $fa-var-caret-square-o-left: "\f191";
$fa-var-caret-square-o-right: "\f152";
$fa-var-caret-square-o-up: "\f151";
$fa-var-caret-up: "\f0d8";
$fa-var-cc-amex: "\f1f3";
$fa-var-cc-discover: "\f1f2";
$fa-var-cc-mastercard: "\f1f1";
$fa-var-cc-paypal: "\f1f4";
$fa-var-cc-stripe: "\f1f5";
$fa-var-cc-visa: "\f1f0";
$fa-var-certificate: "\f0a3";
$fa-var-chain: "\f0c1";
$fa-var-chain-broken: "\f127";
Expand Down Expand Up @@ -236,6 +242,7 @@ $fa-var-globe: "\f0ac";
$fa-var-google: "\f1a0";
$fa-var-google-plus: "\f0d5";
$fa-var-google-plus-square: "\f0d4";
$fa-var-google-wallet: "\f1ee";
$fa-var-graduation-cap: "\f19d";
$fa-var-group: "\f0c0";
$fa-var-h-square: "\f0fd";
Expand Down Expand Up @@ -317,7 +324,7 @@ $fa-var-moon-o: "\f186";
$fa-var-mortar-board: "\f19d";
$fa-var-music: "\f001";
$fa-var-navicon: "\f0c9";
$fa-var-newspaper: "\f1ea";
$fa-var-newspaper-o: "\f1ea";
$fa-var-openid: "\f19b";
$fa-var-outdent: "\f03b";
$fa-var-pagelines: "\f18c";
Expand All @@ -328,6 +335,7 @@ $fa-var-paragraph: "\f1dd";
$fa-var-paste: "\f0ea";
$fa-var-pause: "\f04c";
$fa-var-paw: "\f1b0";
$fa-var-paypal: "\f1ed";
$fa-var-pencil: "\f040";
$fa-var-pencil-square: "\f14b";
$fa-var-pencil-square-o: "\f044";
Expand Down
12 changes: 12 additions & 0 deletions src/_includes/icons/payment.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<section id="payment">
<h2 class="page-header">Payment Icons</h2>

<div class="row fontawesome-icon-list">
{% assign icons_currency = icons | expand_aliases | category:"Payment Icons" | sort_by:'class' %}

{% for icon in icons_currency %}
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> fa-{{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
{% endfor %}
</div>

</section>
1 change: 1 addition & 0 deletions src/_includes/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<li><a href="{{ page.relative_path }}icons/#file-type"><i class="fa fa-file-image-o fa-fw"></i>&nbsp; File Type Icons</a></li>
<li><a href="{{ page.relative_path }}icons/#spinner"><i class="fa fa-spinner fa-fw"></i>&nbsp; Spinner Icons</a></li>
<li><a href="{{ page.relative_path }}icons/#form-control"><i class="fa fa-check-square fa-fw"></i>&nbsp; Form Control Icons</a></li>
<li><a href="{{ page.relative_path }}icons/#payment"><i class="fa fa-credit-card fa-fw"></i>&nbsp; Payment Icons</a></li>
<li><a href="{{ page.relative_path }}icons/#currency"><i class="fa fa-won fa-fw"></i>&nbsp; Currency Icons</a></li>
<li><a href="{{ page.relative_path }}icons/#text-editor"><i class="fa fa-file-text-o fa-fw"></i>&nbsp; Text Editor Icons</a></li>
<li><a href="{{ page.relative_path }}icons/#directional"><i class="fa fa-hand-o-right fa-fw"></i>&nbsp; Directional Icons</a></li>
Expand Down
Binary file modified src/assets/font-awesome/fonts/FontAwesome.otf
Binary file not shown.
1 change: 1 addition & 0 deletions src/icons.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
{% include icons/file-type.html %}
{% include icons/spinner.html %}
{% include icons/form-control.html %}
{% include icons/payment.html %}
{% include icons/currency.html %}
{% include icons/text-editor.html %}
{% include icons/directional.html %}
Expand Down
70 changes: 68 additions & 2 deletions src/icons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1079,6 +1079,7 @@ icons:
created: 2.0
categories:
- Web Application Icons
- Payment Icons

- name: rss
id: rss
Expand Down Expand Up @@ -3320,8 +3321,8 @@ icons:
categories:
- Brand Icons

- name: Newspaper
id: newspaper
- name: Newspaper Outlined
id: newspaper-o
unicode: f1ea
created: 4.2
categories:
Expand All @@ -3340,3 +3341,68 @@ icons:
created: 4.2
categories:
- Web Application Icons

- name: Paypal
id: paypal
unicode: f1ed
created: 4.2
categories:
- Brand Icons
- Payment Icons

- name: Goole Wallet
id: google-wallet
unicode: f1ee
created: 4.2
categories:
- Brand Icons
- Payment Icons


- name: Visa Credit Card
id: cc-visa
unicode: f1f0
created: 4.2
categories:
- Brand Icons
- Payment Icons

- name: MasterCard Credit Card
id: cc-mastercard
unicode: f1f1
created: 4.2
categories:
- Brand Icons
- Payment Icons

- name: Discover Credit Card
id: cc-discover
unicode: f1f2
created: 4.2
categories:
- Brand Icons
- Payment Icons

- name: American Express Credit Card
id: cc-amex
unicode: f1f3
created: 4.2
categories:
- Brand Icons
- Payment Icons

- name: Paypal Credit Card
id: cc-paypal
unicode: f1f4
created: 4.2
categories:
- Brand Icons
- Payment Icons

- name: Stripe Credit Card
id: cc-stripe
unicode: f1f5
created: 4.2
categories:
- Brand Icons
- Payment Icons

0 comments on commit df8ca07

Please sign in to comment.