adding form controls section to docs, adding radio checked icon

This commit is contained in:
davegandy 2013-10-22 09:58:07 -04:00
parent 0ebb96888f
commit 4628990555
12 changed files with 40 additions and 6 deletions

View file

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

View file

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

Binary file not shown.

View file

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

View file

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

View file

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

View file

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

View file

@ -0,0 +1,11 @@
<section id="form-control">
<h2 class="page-header">Form Control Icons</h2>
<div class="row fontawesome-icon-list">
{% assign icons_form_control = icons | expand_aliases | category:"Form Control Icons" | sort_by:'class' %}
{% for icon in icons_form_control %}
<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>

View file

@ -30,6 +30,7 @@
<li class="divider"></li>
<li><a href="{{ page.relative_path }}icons/#new"><i class="fa fa-rub fa-fixed-width"></i>&nbsp; New Icons in {{ site.fontawesome.minor_version }}</a></li>
<li><a href="{{ page.relative_path }}icons/#web-application"><i class="fa fa-camera-retro fa-fixed-width"></i>&nbsp; Web Application Icons</a></li>
<li><a href="{{ page.relative_path }}icons/#form-control"><i class="fa fa-checkbox-checked fa-fixed-width"></i>&nbsp; Form Control Icons</a></li>
<li><a href="{{ page.relative_path }}icons/#currency"><i class="fa fa-won fa-fixed-width"></i>&nbsp; Currency Icons</a></li>
<li><a href="{{ page.relative_path }}icons/#text-editor"><i class="fa fa-file-text-o fa-fixed-width"></i>&nbsp; Text Editor Icons</a></li>
<li><a href="{{ page.relative_path }}icons/#directional"><i class="fa fa-hand-o-right fa-fixed-width"></i>&nbsp; Directional Icons</a></li>

View file

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

View file

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