@@ -149,10 +149,10 @@ public static String getIconHtml(String icon) {
149149
150150 public static String getSpinnerIconHtml (String icon , String text ) {
151151 if (text == null || text .isEmpty ())
152- return I_CLASS + getCssClassPrefix () + " fa-" + icon + " fa-lg fa-spinner' aria-hidden='true'></i>" ;
152+ return I_CLASS + getCssClassPrefix () + " fa-" + icon + " fa-thin fa-spinner' aria-hidden='true'></i>" ;
153153 else
154154 return DIV_I_CLASS + getCssClassPrefix () + " fa-" + icon
155- + " fa-lg fa-fw fa-spinner' aria-hidden='true'></i> " + I18N .message (text ) + CLOSE_DIV ;
155+ + " fa-thin fa-fw fa-spinner' aria-hidden='true'></i> " + I18N .message (text ) + CLOSE_DIV ;
156156 }
157157
158158 public static String getIconButtonHTML (String icon , String text , String tooltip , String color , String url ) {
@@ -217,10 +217,15 @@ public static String getIndexedIcon(Integer indexed) {
217217 return "" ;
218218 String html = AwesomeFactory .getIconHtml ("database" );
219219 if (indexed == Constants .INDEX_SKIP ) {
220+ // html = "<span class='fa-stack'><i class='" + getCssClassPrefix()
221+ // + " fa-database fa-stack-1x fa-thin' aria-hidden='true' data-fa-transform='grow-6'></i>";
222+ // html += I_CLASS + AwesomeFactory.getCssClassPrefix()
223+ // + " fa-times fa-stack-1x' style='color: red' data-fa-transform='grow-2'></i></span>";
224+
220225 html = "<span class='fa-stack'><i class='" + getCssClassPrefix ()
221- + " fa-database fa-stack-1x' aria-hidden='true' data-fa-transform='grow-6' ></i>" ;
226+ + " fa-database fa-stack-1x fa-thin ' aria-hidden='true' ></i>" ;
222227 html += I_CLASS + AwesomeFactory .getCssClassPrefix ()
223- + " fa-times fa-stack-1x' style='color: red' data-fa-transform='grow-2' ></i></span>" ;
228+ + " fa-times fa-stack-1x' style='color: red' ></i></span>" ;
224229 }
225230 return html ;
226231 }
@@ -236,18 +241,18 @@ public static String getColoredIconHtml(String icon, String text, String color)
236241 public static String getIconHtml (String icon , String rotation , String text ) {
237242 if (text == null || text .isEmpty ())
238243 return I_CLASS + getCssClassPrefix () + " fa-" + icon + (rotation != null ? " " + rotation : "" )
239- + " fa-lg ' aria-hidden='true'></i>" ;
244+ + " fa-thin ' aria-hidden='true'></i>" ;
240245 else
241246 return DIV_I_CLASS + getCssClassPrefix () + " fa-" + icon + (rotation != null ? " " + rotation : "" )
242- + " fa-lg fa-fw' aria-hidden='true'></i> " + I18N .message (text ) + CLOSE_DIV ;
247+ + " fa-thin fa-fw' aria-hidden='true'></i> " + I18N .message (text ) + CLOSE_DIV ;
243248 }
244249
245250 public static String getColoredIconHtmlWithoutI18N (String icon , String text , String color ) {
246251 if (text == null || text .isEmpty ())
247- return I_CLASS + getCssClassPrefix () + " fa-" + icon + " fa-lg ' aria-hidden='true' "
252+ return I_CLASS + getCssClassPrefix () + " fa-" + icon + " fa-thin ' aria-hidden='true' "
248253 + (color != null && !color .isEmpty () ? "style='color: " + color + "'" : "" ) + "></i>" ;
249254 else
250- return DIV_I_CLASS + getCssClassPrefix () + " fa-" + icon + " fa-lg fa-fw' aria-hidden='true'"
255+ return DIV_I_CLASS + getCssClassPrefix () + " fa-" + icon + " fa-thin fa-fw' aria-hidden='true'"
251256 + (color != null && !color .isEmpty () ? "style='color: " + color + "'" : "" ) + "></i> " + text
252257 + CLOSE_DIV ;
253258 }
0 commit comments