Browse Source

Adding low-vision #8895

Dave Gandy 9 years ago
parent
commit
373cf12fad

+ 1 - 1
README.md

@@ -1,7 +1,7 @@
 # [Font Awesome v4.6.0](http://fontawesome.io)
 # [Font Awesome v4.6.0](http://fontawesome.io)
 ### The iconic font and CSS framework
 ### The iconic font and CSS framework
 
 
-Font Awesome is a full suite of 622 pictographic icons for easy scalable vector graphics on websites,
+Font Awesome is a full suite of 623 pictographic icons for easy scalable vector graphics on websites,
 created and maintained by [Dave Gandy](https://twitter.com/davegandy).
 created and maintained by [Dave Gandy](https://twitter.com/davegandy).
 Stay up to date with the latest release and announcements on Twitter:
 Stay up to date with the latest release and announcements on Twitter:
 [@fontawesome](http://twitter.com/fontawesome).
 [@fontawesome](http://twitter.com/fontawesome).

+ 3 - 1
css/font-awesome.css

@@ -2104,7 +2104,6 @@
 .fa-question-circle-o:before {
 .fa-question-circle-o:before {
   content: "\f29c";
   content: "\f29c";
 }
 }
-.fa-low-vision:before,
 .fa-blind:before {
 .fa-blind:before {
   content: "\f29d";
   content: "\f29d";
 }
 }
@@ -2139,6 +2138,9 @@
 .fa-sign-language:before {
 .fa-sign-language:before {
   content: "\f2a7";
   content: "\f2a7";
 }
 }
+.fa-low-vision:before {
+  content: "\f2a8";
+}
 .sr-only {
 .sr-only {
   position: absolute;
   position: absolute;
   width: 1px;
   width: 1px;

File diff suppressed because it is too large
+ 0 - 0
css/font-awesome.min.css


BIN
fonts/FontAwesome.otf


+ 1 - 1
less/icons.less

@@ -702,7 +702,6 @@
 .@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }
 .@{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}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }
 .@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }
 .@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }
-.@{fa-css-prefix}-low-vision:before,
 .@{fa-css-prefix}-blind:before { content: @fa-var-blind; }
 .@{fa-css-prefix}-blind:before { content: @fa-var-blind; }
 .@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }
 .@{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}-volume-control-phone:before { content: @fa-var-volume-control-phone; }
@@ -717,3 +716,4 @@
 .@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }
 .@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }
 .@{fa-css-prefix}-signing:before,
 .@{fa-css-prefix}-signing:before,
 .@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }
 .@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }
+.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }

+ 1 - 1
less/variables.less

@@ -410,7 +410,7 @@
 @fa-var-long-arrow-left: "\f177";
 @fa-var-long-arrow-left: "\f177";
 @fa-var-long-arrow-right: "\f178";
 @fa-var-long-arrow-right: "\f178";
 @fa-var-long-arrow-up: "\f176";
 @fa-var-long-arrow-up: "\f176";
-@fa-var-low-vision: "\f29d";
+@fa-var-low-vision: "\f2a8";
 @fa-var-magic: "\f0d0";
 @fa-var-magic: "\f0d0";
 @fa-var-magnet: "\f076";
 @fa-var-magnet: "\f076";
 @fa-var-mail-forward: "\f064";
 @fa-var-mail-forward: "\f064";

+ 1 - 1
scss/_icons.scss

@@ -702,7 +702,6 @@
 .#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; }
 .#{$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}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; }
 .#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; }
 .#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; }
-.#{$fa-css-prefix}-low-vision:before,
 .#{$fa-css-prefix}-blind:before { content: $fa-var-blind; }
 .#{$fa-css-prefix}-blind:before { content: $fa-var-blind; }
 .#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; }
 .#{$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}-volume-control-phone:before { content: $fa-var-volume-control-phone; }
@@ -717,3 +716,4 @@
 .#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; }
 .#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; }
 .#{$fa-css-prefix}-signing:before,
 .#{$fa-css-prefix}-signing:before,
 .#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; }
 .#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; }
+.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; }

+ 1 - 1
scss/_variables.scss

@@ -410,7 +410,7 @@ $fa-var-long-arrow-down: "\f175";
 $fa-var-long-arrow-left: "\f177";
 $fa-var-long-arrow-left: "\f177";
 $fa-var-long-arrow-right: "\f178";
 $fa-var-long-arrow-right: "\f178";
 $fa-var-long-arrow-up: "\f176";
 $fa-var-long-arrow-up: "\f176";
-$fa-var-low-vision: "\f29d";
+$fa-var-low-vision: "\f2a8";
 $fa-var-magic: "\f0d0";
 $fa-var-magic: "\f0d0";
 $fa-var-magnet: "\f076";
 $fa-var-magnet: "\f076";
 $fa-var-mail-forward: "\f064";
 $fa-var-mail-forward: "\f064";

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


+ 9 - 2
src/icons.yml

@@ -5917,8 +5917,6 @@ icons:
     id:         blind
     id:         blind
     unicode:    f29d
     unicode:    f29d
     created:    4.6
     created:    4.6
-    aliases:
-      - low-vision
     categories:
     categories:
       - Web Application Icons
       - Web Application Icons
       - Accessibility Icons
       - Accessibility Icons
@@ -6000,3 +5998,12 @@ icons:
     categories:
     categories:
       - Web Application Icons
       - Web Application Icons
       - Accessibility Icons
       - Accessibility Icons
+
+
+  - name:       Low Vision
+    id:         low-vision
+    unicode:    f2a8
+    created:    4.6
+    categories:
+      - Web Application Icons
+      - Accessibility Icons

Some files were not shown because too many files changed in this diff