diff --git a/css/font-awesome.css b/css/font-awesome.css index a4a7f0bdc..6fca57aea 100644 --- a/css/font-awesome.css +++ b/css/font-awesome.css @@ -672,7 +672,6 @@ .fa-phone:before { content: "\f095"; } -.fa-unchecked:before, .fa-square-o:before { content: "\f096"; } @@ -1379,3 +1378,6 @@ .fa-caret-square-o-left:before { content: "\f191"; } +.fa-dot-circle-o:before { + content: "\f192"; +} diff --git a/css/font-awesome.min.css b/css/font-awesome.min.css index 9449e3e29..4bc4867ae 100644 --- a/css/font-awesome.min.css +++ b/css/font-awesome.min.css @@ -165,7 +165,7 @@ .fa-upload:before{content:"\f093"} .fa-lemon-o:before{content:"\f094"} .fa-phone:before{content:"\f095"} -.fa-unchecked:before,.fa-square-o:before{content:"\f096"} +.fa-square-o:before{content:"\f096"} .fa-bookmark-o:before{content:"\f097"} .fa-phone-square:before{content:"\f098"} .fa-twitter:before{content:"\f099"} @@ -390,3 +390,4 @@ .fa-arrow-circle-o-right:before{content:"\f18e"} .fa-arrow-circle-o-left:before{content:"\f190"} .fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"} +.fa-dot-circle-o:before{content:"\f192"} diff --git a/fonts/FontAwesome.otf b/fonts/FontAwesome.otf index cdf6c4023..8458f12ab 100644 Binary files a/fonts/FontAwesome.otf and b/fonts/FontAwesome.otf differ diff --git a/less/icons.less b/less/icons.less index f525c42ff..0bb2e2210 100644 --- a/less/icons.less +++ b/less/icons.less @@ -149,7 +149,6 @@ .@{fa-css-prefix}-upload:before { content: @fa-var-upload; } .@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; } .@{fa-css-prefix}-phone:before { content: @fa-var-phone; } -.@{fa-css-prefix}-unchecked:before, .@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; } .@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; } .@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } @@ -406,3 +405,4 @@ .@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; } .@{fa-css-prefix}-toggle-left:before, .@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; } +.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; } diff --git a/less/variables.less b/less/variables.less index c3967c8ac..9558b59b3 100644 --- a/less/variables.less +++ b/less/variables.less @@ -377,4 +377,5 @@ @fa-var-arrow-circle-o-right: "\f18e"; @fa-var-arrow-circle-o-left: "\f190"; @fa-var-caret-square-o-left: "\f191"; +@fa-var-dot-circle-o: "\f192"; diff --git a/scss/_icons.scss b/scss/_icons.scss index 456fda710..6bba052a2 100644 --- a/scss/_icons.scss +++ b/scss/_icons.scss @@ -149,7 +149,6 @@ .#{$fa-css-prefix}-upload:before { content: $fa-var-upload; } .#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; } .#{$fa-css-prefix}-phone:before { content: $fa-var-phone; } -.#{$fa-css-prefix}-unchecked:before, .#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; } .#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; } .#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; } @@ -406,3 +405,4 @@ .#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; } .#{$fa-css-prefix}-toggle-left:before, .#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; } +.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; } diff --git a/scss/_variables.scss b/scss/_variables.scss index 7368f3ebd..03830dc74 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -377,4 +377,5 @@ $fa-var-stack-exchange: "\f18d"; $fa-var-arrow-circle-o-right: "\f18e"; $fa-var-arrow-circle-o-left: "\f190"; $fa-var-caret-square-o-left: "\f191"; +$fa-var-dot-circle-o: "\f192"; diff --git a/src/_includes/icons/form-control.html b/src/_includes/icons/form-control.html new file mode 100644 index 000000000..98fa0fa6c --- /dev/null +++ b/src/_includes/icons/form-control.html @@ -0,0 +1,11 @@ +
+ + +
+ {% assign icons_form_control = icons | expand_aliases | category:"Form Control Icons" | sort_by:'class' %} + + {% for icon in icons_form_control %} + + {% endfor %} +
+
diff --git a/src/_includes/navbar.html b/src/_includes/navbar.html index 6f07b7017..e512ba5a8 100644 --- a/src/_includes/navbar.html +++ b/src/_includes/navbar.html @@ -30,6 +30,7 @@
  •   New Icons in {{ site.fontawesome.minor_version }}
  •   Web Application Icons
  • +
  •   Form Control Icons
  •   Currency Icons
  •   Text Editor Icons
  •   Directional Icons
  • diff --git a/src/assets/font-awesome/fonts/FontAwesome.otf b/src/assets/font-awesome/fonts/FontAwesome.otf index cdf6c4023..8458f12ab 100644 Binary files a/src/assets/font-awesome/fonts/FontAwesome.otf and b/src/assets/font-awesome/fonts/FontAwesome.otf differ diff --git a/src/icons.html b/src/icons.html index a3929a76c..c3d216f16 100644 --- a/src/icons.html +++ b/src/icons.html @@ -23,6 +23,7 @@ relative_path: ../ {% include icons/new.html %} {% include icons/web-application.html %} + {% include icons/form-control.html %} {% include icons/currency.html %} {% include icons/text-editor.html %} {% include icons/directional.html %} diff --git a/src/icons.yml b/src/icons.yml index e77a971ea..da5754b98 100644 --- a/src/icons.yml +++ b/src/icons.yml @@ -479,6 +479,7 @@ icons: created: 1.0 categories: - Web Application Icons + - Form Control Icons - name: move id: move @@ -1013,10 +1014,10 @@ icons: id: square-o unicode: f096 created: 2.0 - aliases: - - unchecked categories: - Web Application Icons + - Form Control Icons + - name: Bookmark Outlined id: bookmark-o @@ -1273,6 +1274,7 @@ icons: created: 2.0 categories: - Web Application Icons + - Form Control Icons - name: Reorder id: reorder @@ -1746,6 +1748,7 @@ icons: created: 3.0 categories: - Web Application Icons + - Form Control Icons - name: quote-left id: quote-left @@ -1775,6 +1778,7 @@ icons: created: 3.0 categories: - Web Application Icons + - Form Control Icons - name: Reply id: reply @@ -2143,6 +2147,7 @@ icons: created: 3.1 categories: - Web Application Icons + - Form Control Icons - name: Minus Square Outlined id: minus-square-o @@ -2150,6 +2155,8 @@ icons: created: 3.1 categories: - Web Application Icons + - Form Control Icons + - name: Level Up id: level-up @@ -2171,6 +2178,7 @@ icons: created: 3.1 categories: - Web Application Icons + - Form Control Icons - name: Pencil Square id: pencil-square @@ -2670,3 +2678,11 @@ icons: categories: - Web Application Icons - Directional Icons + + - name: Dot Circle O + id: dot-circle-o + unicode: f192 + created: 4.0 + categories: + - Web Application Icons + - Form Control Icons