浏览代码

adding #114 icon-crop

davegandy 12 年之前
父节点
当前提交
9c76a8f48f
共有 4 个文件被更改,包括 15 次插入4 次删除
  1. 7 2
      docs/assets/css/font-awesome.css
  2. 二进制
      docs/assets/font/FontAwesome.otf
  3. 5 2
      docs/assets/less/font-awesome.less
  4. 3 0
      docs/index.html

+ 7 - 2
docs/assets/css/font-awesome.css

@@ -376,7 +376,8 @@ ul.icons li [class*=" icon-"] {
 .icon-play-circle:before {
   content: "\f01d";
 }
-.icon-repeat:before {
+.icon-repeat:before,
+.icon-rotate-right:before {
   content: "\f01e";
 }
 /* \f020 doesn't work in Safari. all shifted one down */
@@ -891,7 +892,8 @@ ul.icons li [class*=" icon-"] {
 .icon-linkedin:before {
   content: "\f0e1";
 }
-.icon-undo:before {
+.icon-undo:before,
+.icon-rotate-left:before {
   content: "\f0e2";
 }
 .icon-legal:before {
@@ -1084,3 +1086,6 @@ ul.icons li [class*=" icon-"] {
 .icon-location-arrow:before {
   content: "\f124";
 }
+.icon-crop:before {
+  content: "\f125";
+}

二进制
docs/assets/font/FontAwesome.otf


+ 5 - 2
docs/assets/less/font-awesome.less

@@ -298,7 +298,8 @@ ul.icons {
 .icon-upload:before               { content: "\f01b"; }
 .icon-inbox:before                { content: "\f01c"; }
 .icon-play-circle:before          { content: "\f01d"; }
-.icon-repeat:before               { content: "\f01e"; }
+.icon-repeat:before,
+.icon-rotate-right:before         { content: "\f01e"; }
 
 /* \f020 doesn't work in Safari. all shifted one down */
 .icon-refresh:before              { content: "\f021"; }
@@ -484,7 +485,8 @@ ul.icons {
 
 .icon-envelope-alt:before         { content: "\f0e0"; }
 .icon-linkedin:before             { content: "\f0e1"; }
-.icon-undo:before                 { content: "\f0e2"; }
+.icon-undo:before,
+.icon-rotate-left:before          { content: "\f0e2"; }
 .icon-legal:before                { content: "\f0e3"; }
 .icon-dashboard:before            { content: "\f0e4"; }
 .icon-comment-alt:before          { content: "\f0e5"; }
@@ -553,3 +555,4 @@ ul.icons {
 .icon-mail-reply-all:before       { content: "\f122"; }
 .icon-star-half-empty:before      { content: "\f123"; }
 .icon-location-arrow:before       { content: "\f124"; }
+.icon-crop:before                 { content: "\f125"; }

+ 3 - 0
docs/index.html

@@ -265,6 +265,9 @@
       <li><i class="icon-mail-reply-all"></i> icon-mail-reply-all</li>
       <li><i class="icon-star-half-empty"></i> icon-star-half-empty</li>
       <li><i class="icon-location-arrow"></i> icon-location-arrow</li>
+      <li><i class="icon-rotate-left"></i> icon-rotate-left <span class="muted">(alias)</span></li>
+      <li><i class="icon-rotate-right"></i> icon-rotate-right <span class="muted">(alias)</span></li>
+      <li><i class="icon-crop"></i> icon-crop</li>
     </ul>
   </div>
 </section>