소스 검색

adding payment icons and doc: paypal, google-wallet, cc-visa, cc-mastercard, cc-amex, cc-discover, cc-paypal, cc-stripe #1009

Dave Gandy 11 년 전
부모
커밋
df8ca071e5

+ 1 - 1
README.md

@@ -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).
 

+ 25 - 1
css/font-awesome.css

@@ -1567,7 +1567,7 @@
 .fa-yelp:before {
   content: "\f1e9";
 }
-.fa-newspaper:before {
+.fa-newspaper-o:before {
   content: "\f1ea";
 }
 .fa-wifi:before {
@@ -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";
+}

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
css/font-awesome.min.css


BIN
fonts/FontAwesome.otf


+ 9 - 1
less/icons.less

@@ -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; }

+ 9 - 1
less/variables.less

@@ -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";
@@ -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";
@@ -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";
@@ -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";

+ 9 - 1
scss/_icons.scss

@@ -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; }

+ 9 - 1
scss/_variables.scss

@@ -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";
@@ -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";
@@ -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";
@@ -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";

+ 12 - 0
src/_includes/icons/payment.html

@@ -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 - 0
src/_includes/navbar.html

@@ -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>

BIN
src/assets/font-awesome/fonts/FontAwesome.otf


+ 1 - 0
src/icons.html

@@ -26,6 +26,7 @@ relative_path: ../
   {% 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 %}

+ 68 - 2
src/icons.yml

@@ -1079,6 +1079,7 @@ icons:
     created:    2.0
     categories:
       - Web Application Icons
+      - Payment Icons
 
   - name:       rss
     id:         rss
@@ -3320,8 +3321,8 @@ icons:
     categories:
       - Brand Icons
 
-  - name:       Newspaper
-    id:         newspaper
+  - name:       Newspaper Outlined
+    id:         newspaper-o
     unicode:    f1ea
     created:    4.2
     categories:
@@ -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

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.