From a439161b341269f932e8a7c246038a19f0715453 Mon Sep 17 00:00:00 2001 From: davegandy Date: Thu, 23 May 2013 14:20:54 -0400 Subject: [PATCH] better css layout to minimize characters --- build/assets/font-awesome/less/icons.less | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/build/assets/font-awesome/less/icons.less b/build/assets/font-awesome/less/icons.less index a8e3f6871..679c836ae 100644 --- a/build/assets/font-awesome/less/icons.less +++ b/build/assets/font-awesome/less/icons.less @@ -3,13 +3,8 @@ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ {% for icon in icons %} -.icon-{{ icon.id }}:before { - content: @{{ icon.id }}; -} {% for alias in icon.aliases %} -// {{ icon.name }} alias -.icon-{{ alias }}:before { - content: @{{ icon.id }}; -} +.icon-{{ alias }}:before, {% endfor %} +.icon-{{ icon.id }}:before { content: @{{ icon.id }}; } {% endfor %}