瀏覽代碼

Adding braille icon #5753.

Dave Gandy 9 年之前
父節點
當前提交
ea65a45664
共有 10 個文件被更改,包括 28 次插入6 次删除
  1. 1 1
      README.md
  2. 5 1
      css/font-awesome.css
  3. 0 0
      css/font-awesome.min.css
  4. 二進制
      fonts/FontAwesome.otf
  5. 3 1
      less/icons.less
  6. 2 0
      less/variables.less
  7. 3 1
      scss/_icons.scss
  8. 2 0
      scss/_variables.scss
  9. 二進制
      src/assets/font-awesome/fonts/FontAwesome.otf
  10. 12 2
      src/icons.yml

+ 1 - 1
README.md

@@ -1,7 +1,7 @@
 # [Font Awesome v4.6.0](http://fontawesome.io)
 ### The iconic font and CSS framework
 
-Font Awesome is a full suite of 615 pictographic icons for easy scalable vector graphics on websites,
+Font Awesome is a full suite of 616 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).

+ 5 - 1
css/font-awesome.css

@@ -2104,7 +2104,8 @@
 .fa-question-circle-o:before {
   content: "\f29c";
 }
-.fa-blind:before {
+.fa-blind:before,
+.fa-low-vision:before {
   content: "\f29d";
 }
 .fa-audio-description:before {
@@ -2113,6 +2114,9 @@
 .fa-volume-control-phone:before {
   content: "\f2a0";
 }
+.fa-braille:before {
+  content: "\f2a1";
+}
 .sr-only {
   position: absolute;
   width: 1px;

文件差異過大導致無法顯示
+ 0 - 0
css/font-awesome.min.css


二進制
fonts/FontAwesome.otf


+ 3 - 1
less/icons.less

@@ -702,6 +702,8 @@
 .@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }
 .@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }
 .@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }
-.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }
+.@{fa-css-prefix}-blind:before,
+.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }
 .@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }
 .@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }
+.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }

+ 2 - 0
less/variables.less

@@ -96,6 +96,7 @@
 @fa-var-book: "\f02d";
 @fa-var-bookmark: "\f02e";
 @fa-var-bookmark-o: "\f097";
+@fa-var-braille: "\f2a1";
 @fa-var-briefcase: "\f0b1";
 @fa-var-btc: "\f15a";
 @fa-var-bug: "\f188";
@@ -401,6 +402,7 @@
 @fa-var-long-arrow-left: "\f177";
 @fa-var-long-arrow-right: "\f178";
 @fa-var-long-arrow-up: "\f176";
+@fa-var-low-vision: "\f29d";
 @fa-var-magic: "\f0d0";
 @fa-var-magnet: "\f076";
 @fa-var-mail-forward: "\f064";

+ 3 - 1
scss/_icons.scss

@@ -702,6 +702,8 @@
 .#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; }
 .#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; }
 .#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; }
-.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; }
+.#{$fa-css-prefix}-blind:before,
+.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; }
 .#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; }
 .#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; }
+.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; }

+ 2 - 0
scss/_variables.scss

@@ -96,6 +96,7 @@ $fa-var-bomb: "\f1e2";
 $fa-var-book: "\f02d";
 $fa-var-bookmark: "\f02e";
 $fa-var-bookmark-o: "\f097";
+$fa-var-braille: "\f2a1";
 $fa-var-briefcase: "\f0b1";
 $fa-var-btc: "\f15a";
 $fa-var-bug: "\f188";
@@ -401,6 +402,7 @@ $fa-var-long-arrow-down: "\f175";
 $fa-var-long-arrow-left: "\f177";
 $fa-var-long-arrow-right: "\f178";
 $fa-var-long-arrow-up: "\f176";
+$fa-var-low-vision: "\f29d";
 $fa-var-magic: "\f0d0";
 $fa-var-magnet: "\f076";
 $fa-var-mail-forward: "\f064";

二進制
src/assets/font-awesome/fonts/FontAwesome.otf


+ 12 - 2
src/icons.yml

@@ -5913,10 +5913,12 @@ icons:
       - Web Application Icons
       - Accessibility Icons
 
-  - name:       Blind
-    id:         blind
+  - name:       Low Vision
+    id:         low-vision
     unicode:    f29d
     created:    4.6
+    aliases:
+      - blind
     categories:
       - Web Application Icons
       - Accessibility Icons
@@ -5937,3 +5939,11 @@ icons:
     categories:
       - Web Application Icons
       - Accessibility Icons
+
+  - name:       Braille
+    id:         braille
+    unicode:    f2a1
+    created:    4.6
+    categories:
+      - Web Application Icons
+      - Accessibility Icons

部分文件因文件數量過多而無法顯示